Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 111 for flavor (0.53 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/DefaultResolutionOutputs.java

                return lenient;
            }
    
            @Override
            public void setLenient(boolean lenient) {
                this.lenient = lenient;
            }
    
            // TODO: Deprecate this in favor of setLenient(Boolean)
            @Override
            public ArtifactView.ViewConfiguration lenient(boolean lenient) {
                this.lenient = lenient;
                return this;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/link.go

    	buf.WriteString("![")
    	(*Link)(x).printRemainingMarkdown(buf)
    }
    
    func (x *Image) PrintText(buf *bytes.Buffer) {
    	for _, c := range x.Inner {
    		c.PrintText(buf)
    	}
    }
    
    // GitHub Flavored Markdown autolinks extension
    // https://github.github.com/gfm/#autolinks-extension-
    
    // autoLinkMore rewrites any extended autolinks in the body
    // and returns the result.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. hack/golangci.yaml

    #   merging. Beware that the golangci-lint output includes also the
    #   issues that must be fixed and doesn't indicate how severe each issue
    #   is (https://gophers.slack.com/archives/CS0TBRKPC/p1685721815275349).
    #
    # All three flavors are generated from golangci.yaml.in with
    # hack/update-golangci-lint-config.sh.
    
    run:
      timeout: 30m
      skip-files:
        - "^zz_generated.*"
    
    output:
      sort-results: true
    
    issues:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

          newQueryParamsNameToRedact.addAll(name)
          queryParamsNameToRedact = newQueryParamsNameToRedact
        }
    
        /**
         * Sets the level and returns this.
         *
         * This was deprecated in OkHttp 4.0 in favor of the [level] val. In OkHttp 4.3 it is
         * un-deprecated because Java callers can't chain when assigning Kotlin vals. (The getter remains
         * deprecated).
         */
        fun setLevel(level: Level) =
          apply {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

            List<String> debugArgs = collectDebugArgs(arguments);
            if (!debugArgs.isEmpty() && debugOptions.getEnabled().get()) {
                LOGGER.warn("Debug configuration ignored in favor of the supplied JVM arguments: " + debugArgs);
                debugOptions.getEnabled().set(false);
            }
        }
    
        private static List<String> collectDebugArgs(Iterable<?> arguments) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. src/crypto/tls/auth.go

    	{PSSWithSHA512, crypto.SHA512.Size()*2 + 2, VersionTLS13},
    	// PKCS #1 v1.5 uses prefixes from hashPrefixes in crypto/rsa, and requires
    	//    emLen >= len(prefix) + hLen + 11
    	// TLS 1.3 dropped support for PKCS #1 v1.5 in favor of RSA-PSS.
    	{PKCS1WithSHA256, 19 + crypto.SHA256.Size() + 11, VersionTLS12},
    	{PKCS1WithSHA384, 19 + crypto.SHA384.Size() + 11, VersionTLS12},
    	{PKCS1WithSHA512, 19 + crypto.SHA512.Size() + 11, VersionTLS12},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/base/PredicatesTest.java

      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testNot_serialization() {
        checkSerialization(Predicates.not(isOdd()));
      }
    
      /*
       * Tests for all the different flavors of Predicates.and().
       */
    
      public void testAnd_applyNoArgs() {
        assertEvalsToTrue(Predicates.and());
      }
    
      public void testAnd_equalityNoArgs() {
        new EqualsTester()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.search_result_sort_click_count_asc	=	Clics (ascendant)
    labels.search_result_sort_click_count_desc	=	Clics (descendant)
    labels.search_result_sort_favorite_count_asc	=	Favori (croissant)
    labels.search_result_sort_favorite_count_desc	=	Favori (décroissant)
    labels.search_result_sort_multiple	=	Plusieurs
    labels.search_result_size	=	{0} octets
    labels.search_result_created	=	Inscrit:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/PredicatesTest.java

      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testNot_serialization() {
        checkSerialization(Predicates.not(isOdd()));
      }
    
      /*
       * Tests for all the different flavors of Predicates.and().
       */
    
      public void testAnd_applyNoArgs() {
        assertEvalsToTrue(Predicates.and());
      }
    
      public void testAnd_equalityNoArgs() {
        new EqualsTester()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

                '''.stripIndent().trim()
    
        }
    
        def "report renders variant binaries"() {
            buildFile << """
                apply plugin: 'cpp'
                model {
                    flavors {
                        freeware
                        shareware
                        shrinkware
                    }
    
                    components {
                        lib(NativeLibrarySpec)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
Back to top