Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 120 for flavor (0.14 sec)

  1. src/internal/coverage/decodecounter/decodecounterfile.go

    					return 0, err
    				}
    				if n != 4 {
    					return 0, io.EOF
    				}
    				return binary.LittleEndian.Uint32(cdr.u32b), nil
    			}
    		}
    	} else {
    		panic("internal error: unknown counter flavor")
    	}
    
    	// Alternative/experimental path: one way we could handling writing
    	// out counter data would be to just memcpy the counter segment
    	// out to a file, meaning that a region in the counter memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

         * Fallback to {@literal javax.xml.bind.DatatypeConverter} from JAXB which is available starting with Java 6 but is not anymore in Java 9.
         * Fortunately, both of these two Base64 encoders implement the right Base64 flavor, the one that does not split the output in multiple lines.
         *
         * @param userInfo user info
         * @return Base64 encoded user info
         * @throws RuntimeException if no public Base64 encoder is available on this JVM
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            then:
            failure.assertHasDescription("Could not determine the dependencies of task ':linkMainExecutable'.")
            failure.assertHasCause("No shared library binary available for library 'hello' with [flavor: 'default', platform: 'one', buildType: 'debug']")
        }
    
        @Issue("GRADLE-3499")
        @ToBeFixedForConfigurationCache(because = ":components")
        def "can create a binary which name contains dots"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. helm-releases/minio-5.1.0.tgz

    /oauth_callback" # Can leave empty claimPrefix: "" comment: "" displayName: "" networkPolicy: enabled: false # Specifies whether the policies created will be standard Network Policies (flavor: kubernetes) # or Cilium Network Policies (flavor: cilium) flavor: kubernetes allowExternal: true # only when using flavor: cilium egressEntities: - kube-apiserver ## PodDisruptionBudget settings ## ref: https://kubernetes.io/docs/concepts/workloads/pods/disruptions/ ## podDisruptionBudget: enabled: false maxUnavailable:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 18:49:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. helm-releases/minio-5.2.0.tgz

    /oauth_callback" # Can leave empty claimPrefix: "" comment: "" displayName: "" networkPolicy: enabled: false # Specifies whether the policies created will be standard Network Policies (flavor: kubernetes) # or Cilium Network Policies (flavor: cilium) flavor: kubernetes allowExternal: true # only when using flavor: cilium egressEntities: - kube-apiserver ## PodDisruptionBudget settings ## ref: https://kubernetes.io/docs/concepts/workloads/pods/disruptions/ ## podDisruptionBudget: enabled: false maxUnavailable:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. src/internal/coverage/defs.go

    // units will be in use.
    type CoverableUnit struct {
    	StLine, StCol uint32
    	EnLine, EnCol uint32
    	NxStmts       uint32
    	Parent        uint32
    }
    
    // CounterMode tracks the "flavor" of the coverage counters being
    // used in a given coverage-instrumented program.
    type CounterMode uint8
    
    const (
    	CtrModeInvalid  CounterMode = iota
    	CtrModeSet                  // "set" mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. src/strconv/eisel_lemire.go

    	// https://nigeltao.github.io/blog/2020/eisel-lemire.html blog post.
    	//
    	// That blog post discusses the float64 flavor (11 exponent bits with a
    	// -1023 bias, 52 mantissa bits) of the algorithm, but the same approach
    	// applies to the float32 flavor (8 exponent bits with a -127 bias, 23
    	// mantissa bits). The computation here happens with 64-bit values (e.g.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 41.4K bytes
    - Viewed (0)
  8. helm/minio/README.md

    ```
    kubectl annotate namespace default "net.beta.kubernetes.io/network-policy={\"ingress\":{\"isolation\":\"DefaultDeny\"}}"
    ```
    
    When using `Cilium` as a CNI in your cluster, please edit the `flavor` field to `cilium`.
    
    With NetworkPolicy enabled, traffic will be limited to just port 9000.
    
    For more precise policy, set `networkPolicy.allowExternal=true`. This will
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    ----
    
    == Making different flavors of a library available through capabilities
    
    Because it is difficult to model <<feature_variants.adoc#feature_variants,optional feature variants>> as separate jars with pom metadata, libraries sometimes compose different jars with a different feature set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableMap.java

       * Map.getOrDefault}</a>.
       *
       * @since 23.5 (but since 21.0 in the JRE <a
       *     href="https://github.com/google/guava#guava-google-core-libraries-for-java">flavor</a>).
       *     Note, however, that Java 8+ users can call this method with any version and flavor of
       *     Guava.
       */
      // @Override under Java 8 / API Level 24
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top