Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 197 for light (0.04 sec)

  1. android/guava/src/com/google/common/base/CharMatcher.java

       * negation is cheaper to precompute than the matcher itself; it tries to build small hash tables
       * for matchers that only match a few characters, and so on. In the worst-case scenario, it
       * constructs an eight-kilobyte bit array and queries that. In many situations this produces a
       * matcher which is faster to query than the original.
       */
      @GwtIncompatible // SmallCharMatcher
      CharMatcher precomputedInternal() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. pkg/volume/testing/testing.go

    // will return its output on the first command call, even if the command called is
    // different than the one scripted. This is mostly useful to make sure that the
    // right number of commands were called. If you want to check the exact commands
    // and arguments were called, set fe.ExectOrder to true.
    func ScriptCommands(fe *testingexec.FakeExec, scripts []CommandScript) {
    	fe.DisableScripts = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/proxier.go

    	}
    
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    	metrics.SyncProxyRulesLastTimestamp.SetToCurrentTime()
    
    	// Update service healthchecks.  The endpoints list might include services that are
    	// not "OnlyLocal", but the services list will not, and the serviceHealthServer
    	// will just drop those endpoints.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    		// not want those listeners. Protocol sniffing is not needed.
    		if cur.locked {
    			return
    		}
    	}
    
    	var opts []*filterChainOpts
    	// For HTTP_PROXY protocol defined by sidecars, just create the HTTP listener right away.
    	if listenerPortProtocol == protocol.HTTP_PROXY {
    		opts = buildSidecarOutboundHTTPListenerOpts(listenerOpts, actualWildcards[0], listenerProtocol)
    	} else {
    		switch listenerProtocol {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

       // select test framework before configuring options
       useJUnitPlatform()
       options {
       }
    }
    ```
    
    Additionally, setting the test framework multiple times to the _same_ framework now accumulates any options that might be set on the framework.
    Previously, each time the framework was set, it would cause the framework options to be overwritten.
    
    The following code now results in both the "foo" and "bar" tags to be included for the `test` task:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The type of the argument passed to `Provider.filter` is changed from `Predicate` to `Spec` for a more consistent API.
    This change should not affect anyone using `Provider.filter` with a lambda expression.
    However, this might affect plugin authors if they don't use SAM conversions to create a lambda.
    
    === Deprecations
    
    [[org_gradle_util_reports_deprecations_8]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ```
    -force-data-format : Force data format for all layout sensitive ops.
    ```
    ### `-tf-localize-var-handles`
    
    _Creates VarHandleOps next to the operations that use them._
    
    Creates VarHandleOps right next to the operations that use them, one
    per operation.
    This is useful for transformations that only end up with a few small
    snippets of remaining TF code, and wish for those snippets to be
    self-contained.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/CharMatcher.java

       * negation is cheaper to precompute than the matcher itself; it tries to build small hash tables
       * for matchers that only match a few characters, and so on. In the worst-case scenario, it
       * constructs an eight-kilobyte bit array and queries that. In many situations this produces a
       * matcher which is faster to query than the original.
       */
      @GwtIncompatible // SmallCharMatcher
      CharMatcher precomputedInternal() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        }
    
        @SuppressWarnings("deprecation")
        private void assertUsageIsMutable() {
            if (!usageCanBeMutated) {
                // Don't print role message for legacy role - users might not have actively chosen this role
                if (roleAtCreation != ConfigurationRoles.LEGACY) {
                    throw new GradleException(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    		CAdvisorInterface:   nil, // cadvisor.New launches background processes (bg http.ListenAndServe, and some bg cleaners), not set here
    		Cloud:               nil, // cloud provider might start background processes
    		ContainerManager:    nil,
    		KubeClient:          nil,
    		HeartbeatClient:     nil,
    		EventClient:         nil,
    		TracerProvider:      tp,
    		HostUtil:            hu,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top