Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for Grappler (1.6 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            then:
            IllegalStateException t = thrown()
            t.message == "Cannot change attributes of configuration ':conf' after it has been locked for mutation"
        }
    
        def "wrapper attribute container behaves similar to the delegatee"() {
            given:
            def conf = conf()
            def a1 = Attribute.of('a1', String)
            def a2 = Attribute.of('a2', String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      // and any expanded from FusedBatchNorm. We need to do this
      // before converting TF_Conv to TFL_Conv
      (void)applyPatternsAndFoldGreedily(func, std::move(patterns));
    
      // Remove the wrapper of the tf.FakeQuant* ops and also insert the
      // tfl.quantize and tfl.dequantize to preserve the quantization parameters.
      // This is done after the first round of optimization to make sure all the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    // that always returns the same URL.
    func ProxyURL(fixedURL *url.URL) func(*Request) (*url.URL, error) {
    	return func(*Request) (*url.URL, error) {
    		return fixedURL, nil
    	}
    }
    
    // transportRequest is a wrapper around a *Request that adds
    // optional extra headers to write and stores any error to return
    // from roundTrip.
    type transportRequest struct {
    	*Request                        // original request, not to be mutated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    		// we set exitAfter to five minutes because we use this client configuration to request new certs - if we are unable
    		// to request new certs, we will be unable to continue normal operation. Exiting the process allows a wrapper
    		// or the bootstrapping credentials to potentially lay down new initial config.
    		closeAllConns, err := kubeletcertificate.UpdateTransport(wait.NeverStop, transportConfig, clientCertificateManager, 5*time.Minute)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Preconditions.java

           * template to be null (though we do handle that case gracefully at runtime). I've left this
           * one as it is because one of our users has defined a wrapper API around Preconditions,
           * declaring a checkState method that accepts a possibly null template. So we'd need to update
           * that user first.
           */
          @CheckForNull String errorMessageTemplate,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    		}
    	}
    
    	// Remove go_bootstrap now that we're done.
    	xremove(pathf("%s/go_bootstrap"+exe, tooldir))
    
    	if goos == "android" {
    		// Make sure the exec wrapper will sync a fresh $GOROOT to the device.
    		xremove(pathf("%s/go_android_exec-adb-sync-status", os.TempDir()))
    	}
    
    	if wrapperPath := wrapperPathFor(goos, goarch); wrapperPath != "" {
    		oldcc := os.Getenv("CC")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Preconditions.java

           * template to be null (though we do handle that case gracefully at runtime). I've left this
           * one as it is because one of our users has defined a wrapper API around Preconditions,
           * declaring a checkState method that accepts a possibly null template. So we'd need to update
           * that user first.
           */
          @CheckForNull String errorMessageTemplate,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    // setEmpty may only run concurrently with find.
    func (s *scavengeIndex) setEmpty(ci chunkIdx) {
    	val := s.chunks[ci].load()
    	val.setEmpty()
    	s.chunks[ci].store(val)
    }
    
    // atomicScavChunkData is an atomic wrapper around a scavChunkData
    // that stores it in its packed form.
    type atomicScavChunkData struct {
    	value atomic.Uint64
    }
    
    // load loads and unpacks a scavChunkData.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    	pluginMetricsSamplePercent int
    
    	// isSchedulingQueueHintEnabled indicates whether the feature gate for the scheduling queue is enabled.
    	isSchedulingQueueHintEnabled bool
    }
    
    // QueueingHintFunction is the wrapper of QueueingHintFn that has PluginName.
    type QueueingHintFunction struct {
    	PluginName     string
    	QueueingHintFn framework.QueueingHintFn
    }
    
    // clusterEvent has the event and involved objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    // allocated. The list is maintained through the first word in the
    // persistent chunk. This is updated atomically.
    var persistentChunks *notInHeap
    
    // Wrapper around sysAlloc that can allocate small chunks.
    // There is no associated free operation.
    // Intended for things like function/type/debug-related persistent data.
    // If align is 0, uses default align (currently 8).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top