Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 733 for hand (0.72 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxerTest.java

            final List<String> stringList = Arrays.asList(
                    "Thinkin", "of", "a", "master", "plan", "Cuz", "ain’t", "nuthin", "but", "sweat", "inside", "my",
                    "hand");
            Iterator<String> lyrics = stringList.iterator();
    
            ExecutorService executor = Executors.newFixedThreadPool(10);
            CompletionService<ProjectSegment> service = new ExecutorCompletionService<>(executor);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/SourceParseAndResolutionTest.groovy

            """
    
            expect:
            resolve() == [header]
        }
    
        def "resolves token concatenation multiple times for different values of left and right hand sides"() {
            given:
            def header1 = includeDir.createFile("hello1.h")
            def header2 = includeDir.createFile("hello2.h")
            def header3 = includeDir.createFile("hello3.h")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  3. src/cmd/internal/pkgpattern/pkgpattern.go

    	// The strategy for the vendor exclusion is to change the unmatchable
    	// vendor strings to a disallowed code point (vendorChar) and to use
    	// "(anything but that codepoint)*" as the implementation of the ... wildcard.
    	// This is a bit complicated but the obvious alternative,
    	// namely a hand-written search like in most shell glob matchers,
    	// is too easy to make accidentally exponential.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. src/math/sqrt.go

    //      (it will never equal to 1/2ulp).
    //      The rounding mode can be detected by checking whether
    //      huge + tiny is equal to huge, and whether huge - tiny is
    //      equal to huge for some floating point number "huge" and "tiny".
    //
    //
    // Notes:  Rounding mode detection omitted. The constants "mask", "shift",
    // and "bias" are found in src/math/bits.go
    
    // Sqrt returns the square root of x.
    //
    // Special cases are:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 15 17:07:57 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

         * from the test method will be logged and events from the test class and lower will be ignored.  On the other hand, if a test method is parameterized, then events from the iterations of that test
         * method will be logged and events from the test method and lower will be ignored.
         *
         * @return the minimum granularity of the events to be logged
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                        withPsiEntry("parent", parent)
                    }
            }
        }
    }
    
    /**
     *  The left hand side of a `::` is regarded as used unless it refers to a type.
     *  We decide that the LHS is a type reference by checking if the left hand
     *  side is a (qualified) name, and, in case it _is_, resolving that name.
     *
     *  If it resolves to a non-class declaration, it does _not_ refer to a type.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/internal/txtar/archive.go

    //
    // The goals for the format are:
    //
    //   - be trivial enough to create and edit by hand.
    //   - be able to store trees of text files describing go command test cases.
    //   - diff nicely in git history and code reviews.
    //
    // Non-goals include being a completely general archive format,
    // storing binary data, storing file modes, storing special files like
    // symbolic links, and so on.
    //
    // # Txtar format
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    stderr '^ambiguous import: found package example\.net/ambiguous/nested/pkg in multiple modules:\n\texample\.net/ambiguous v0\.1\.0 \(.*\)\n\texample\.net/ambiguous/nested v0\.1\.0 \(.*\)\n'
    
    
    # On the other hand, if we use -compat=1.17, 1.16 can't even load
    # the build list (due to missing checksums).
    
    cp go.mod.orig go.mod
    go mod tidy -compat=1.17
    ! stderr .
    go list -m all
    cmp stdout all-m.txt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    // the kube-apiserver due to long-ish boot sequences. Readyz health checks, on the other hand, have no grace period,
    // since readyz should fail until boot fully completes.
    func (s *GenericAPIServer) AddBootSequenceHealthChecks(checks ...healthz.HealthChecker) error {
    	return s.addHealthChecks(s.livezGracePeriod, checks...)
    }
    
    // addHealthChecks adds health checks to healthz, livez, and readyz. The delay passed in will set
    // a corresponding grace period on livez.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. pkg/kube/krt/README.md

    * `Equals(k K) bool` may be implemented to provide custom implementations to compare objects. Comparison is done to detect if changes were made.
      Default implementations are available for Kubernetes and protobuf objects, and will fallback to `reflect.DeepEqual`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top