Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 908 for haninge (0.11 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConcurrentDerivationStrategyIntegTest.groovy

        // If this test becomes flaky it means we broke the code which prevents mutation of in-memory cached module metadata
        def "selected variants are consistent using concurrent resolution of graphs from cache having different derivation strategies"() {
            executer.requireOwnGradleUserHomeDir()
            settingsFile << """
                include 'app'
                include 'lib'
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/tokens.go

    func contains(tokset uint64, tok token) bool {
    	return tokset&(1<<tok) != 0
    }
    
    type LitKind uint8
    
    // TODO(gri) With the 'i' (imaginary) suffix now permitted on integer
    // and floating-point numbers, having a single ImagLit does
    // not represent the literal kind well anymore. Remove it?
    const (
    	IntLit LitKind = iota
    	FloatLit
    	ImagLit
    	RuneLit
    	StringLit
    )
    
    type Operator uint
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/IncrementalFiler.java

        }
    
        @Override
        public final FileObject createResource(JavaFileManager.Location location, CharSequence pkg, CharSequence relativeName, Element... originatingElements) throws IOException {
            // Prefer having javac validate the location over us, by calling it first.
            FileObject resource = delegate.createResource(location, pkg, relativeName, originatingElements);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/ClassBoundCallInterceptor.java

     * It only intercepts the calls where the receiver is the class of interest.
     * <p>
     * It is possible but not strictly necessary to use this interceptor to intercept constructors.
     * Due to the way constructor interception works, having an {@link InterceptScope#constructorsOf(Class)
     * as a scope already guarantees that the invocation would have the given class object as the receiver.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/testers/SetHashCodeTester.java

        elements.add(null);
        collection = getSubjectGenerator().create(elements.toArray());
        assertEquals(
            "A Set's hashCode() should be the sum of those of its elements (with "
                + "a null element counting as having a hash of zero).",
            expectedHashCode,
            getSet().hashCode());
      }
    
      /**
       * Returns the {@link Method} instances for the test methods in this class which call {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildAggregationIntegrationTest.groovy

                    output = file("output")
                }
    
                task build(type: GradleBuild) {
                  dependsOn upper
                  tasks = ["upper"]
                  outputs.file "build.gradle" // having an output (or input) triggers the bug
                }
            """
    
            when:
            succeeds "build"
    
            then:
            executed ":upper", ":build", ":${testDirectory.name}:upper"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

      // entries (i, delta) to the i-th entry of the partial sum.
      //
      // This allows us to efficiently compute the change to the peak of a memory
      // profile due to cloning an operation range without having to actually clone
      // that range and without having to build a profile vector.
      //
      // The returned vector has at most 2 entries for each tensor referenced in
      // [remat.begin, remat.end). There may be multiple entries for a single
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. security/pkg/server/ca/authenticate/cert_authenticator.go

    		return nil, err
    	}
    
    	return &security.Caller{
    		AuthSource: security.AuthSourceClientCertificate,
    		Identities: ids,
    	}, nil
    }
    
    // authenticateHTTP performs mTLS authentication for http requests. Requires having the endpoints on a listener
    // with proper TLS configuration.
    func (cca *ClientCertAuthenticator) authenticateHTTP(req *http.Request) (*security.Caller, error) {
    	if req.TLS == nil || req.TLS.VerifiedChains == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 19 02:12:12 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. cluster/kubectl.sh

        {
          echo "It looks as if you don't have a compiled kubectl binary"
          echo
          echo "If you are running from a clone of the git repo, please run"
          echo "'./build/run.sh make cross'. Note that this requires having"
          echo "Docker installed."
          echo
          echo "If you are running from a binary release tarball, something is wrong. "
          echo "Look at http://kubernetes.io/ for information on how to contact the "
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 06 18:03:32 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/README.adoc

    The script can be executed without Gradle - it will mimic a tool that requires an interactive login.
    
    Gradle build file registers two tasks - one performs a login and the other one depends on the login having succeeded:
    ====
    include::sample[dir="kotlin",files="build.gradle.kts[]"]
    include::sample[dir="groovy",files="build.gradle[]"]
    ====
    
    The `login` task declares an input property and connects it with a credentials provider.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top