Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 181 for implying (0.26 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemLocationProperty.java

        /**
         * Returns the location of the file system element, and discards details of the task that produces its content. This allows the location, or a value derived from it, to be used as an input to some other task without implying any dependency on the producing task. This should only be used when the task does, in fact, not use the content of this file system element.
         *
         * @since 5.6
         */
        Provider<T> getLocationOnly();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 12:28:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            when:
            fails("compileJava")
    
            then:
            // 2 warnings + 1 special error
            // The compiler will report a single error, implying that the warnings were treated as errors
            verifyAll(receivedProblem(0)) {
                assertProblem(it, "ERROR", false)
                fqid == 'compilation:java:java-compilation-error'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/crypto/tls/cipher_suites.go

    	// TLS 1.3
    	TLS_AES_128_GCM_SHA256: true,
    	TLS_AES_256_GCM_SHA384: true,
    }
    
    // aesgcmPreferred returns whether the first known cipher in the preference list
    // is an AES-GCM cipher, implying the peer has hardware support for it.
    func aesgcmPreferred(ciphers []uint16) bool {
    	for _, cID := range ciphers {
    		if c := cipherSuiteByID(cID); c != nil {
    			return aesgcmCiphers[cID]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// non-negative integer and the limit is calculated as follows.
    	//
    	// BorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )
    	//
    	// The value of this field can be more than 100, implying that this
    	// priority level can borrow a number of seats that is greater than
    	// its own nominal concurrency limit (NominalCL).
    	// When this field is left `nil`, the limit is effectively infinite.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    	// specified listener ports? if so, we should not add any more HTTP
    	// services to the port. The user could have specified a sidecar
    	// resource with one or more explicit ports and then added a catch
    	// all listener, implying add all other ports as usual. When we are
    	// iterating through the services for a catchAll egress listener,
    	// the caller would have set the locked bit for each listener Entry
    	// in the map.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Maps.java

        }
    
        boolean apply(@CheckForNull Object key, @ParametricNullness V value) {
          // This method is called only when the key is in the map (or about to be added to the map),
          // implying that key is a K.
          @SuppressWarnings({"unchecked", "nullness"})
          K k = (K) key;
          return predicate.apply(Maps.immutableEntry(k, value));
        }
    
        @Override
        @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Maps.java

        }
    
        boolean apply(@CheckForNull Object key, @ParametricNullness V value) {
          // This method is called only when the key is in the map (or about to be added to the map),
          // implying that key is a K.
          @SuppressWarnings({"unchecked", "nullness"})
          K k = (K) key;
          return predicate.apply(Maps.immutableEntry(k, value));
        }
    
        @Override
        @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

            when:
            run(":printTestSoftwareTypeExtensionConfiguration")
    
            then:
            assertThatDeclaredValuesAreSetProperly()
    
            and:
            outputContains("Applying SoftwareTypeImplPlugin")
            outputDoesNotContain("Applying AnotherSoftwareTypeImplPlugin")
        }
    
        def 'can declare and configure a custom software type from published plugin'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. tests/integration/helm/install_test.go

    				`with binding 'stable-channel-default-policy-binding.istio.io' denied request`
    			err := t.ConfigIstio().Eval("default", nil, sampleEnvoyFilter).Apply()
    			if err == nil {
    				t.Errorf("Did not receive an error while applying sample EnvoyFilter with stable admission policy")
    			} else {
    				msg := fmt.Sprintf(expectedErrorPrefix, "envoyfilters.networking.istio.io")
    				if !strings.Contains(err.Error(), msg) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/ProjectBuilder.java

     *
     * <p>The {@code ProjectBuilder} implementation bundled with Gradle 3.0 and 3.1 suffers from a
     * binary compatibility issue exposed by applying plugins compiled with Gradle 2.7 and earlier.
     * Applying those pre-compiled plugins in a ProjectBuilder context will result in a {@link ClassNotFoundException}.</p>
     */
    public class ProjectBuilder {
    
        private File projectDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top