Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 926 for effects (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      if (!llvm::hasSingleElement(body))
        return parser.emitError(loc) << "expects a single block region";
    
      // Get the results type from the terminator type inside the graph.
      Operation &fetch = body.back().back();
      if (!isa<FetchOp>(fetch))
        return parser.emitError(loc) << "expects a tf_executor.fetch terminator";
    
      // The return value of the graph operation are the non-control operands of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

       * answer, which ours does not.
       */
    
      @Override
      public Object[] toArray() {
        return snapshot().toArray();
      }
    
      @Override
      @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations
      public <T extends @Nullable Object> T[] toArray(T[] array) {
        return snapshot().toArray(array);
      }
    
      /*
       * We'd love to use 'new ArrayList(this)' or 'list.addAll(this)', but
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServer.java

        }
    
        /**
         * Expects the given request to be made. Releases the request as soon as it is received.
         */
        public void expect(String expectedCall) {
            addNonBlockingHandler(Collections.singleton(doGet(expectedCall)));
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/bidi/core.go

    	// effect, the scan skips the first and last value.
    	//
    	// Although the scan proceeds left to right, and changes the type
    	// values in a way that would appear to affect the computations
    	// later in the scan, there is actually no problem. A change in the
    	// current value can only affect the value to its immediate right,
    	// and only affect it if it is ES or CS. But the current value can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  5. src/net/unixsock.go

    // It is the caller's responsibility to close f when finished.
    // Closing l does not affect f, and closing f does not affect l.
    //
    // The returned os.File's file descriptor is different from the
    // connection's. Attempting to change properties of the original
    // using this duplicate may or may not have the desired effect.
    func (l *UnixListener) File() (f *os.File, err error) {
    	if !l.ok() {
    		return nil, syscall.EINVAL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    	metricsName = "kubelet_pod_start_sli_duration_seconds"
    )
    
    func TestNoEvents(t *testing.T) {
    	t.Run("metrics registered; no incoming events", func(t *testing.T) {
    
    		// expects no metrics in the output
    		wants := ""
    
    		metrics.Register()
    
    		tracker := &basicPodStartupLatencyTracker{
    			pods: map[types.UID]*perPodState{},
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  7. pkg/scheduler/eventhandlers_test.go

    		{
    			name: "tainted node, pods with a single constraint",
    			nodeFn: func() *v1.Node {
    				node := st.MakeNode().Name("fake-node").Obj()
    				node.Spec.Taints = []v1.Taint{
    					{Key: "foo", Effect: v1.TaintEffectNoSchedule},
    					{Key: "bar", Effect: v1.TaintEffectPreferNoSchedule},
    				}
    				return node
    			},
    			pods: []*v1.Pod{
    				st.MakePod().Name("p1").Obj(),
    				st.MakePod().Name("p2").Toleration("foo").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

         */
        void addBroken(String path) {
            allow(path, true, null, broken())
        }
    
        /**
         * Expects one GET request, which fails with a 500 status code
         */
        void expectGetBroken(String path) {
            expect(path, false, ['GET'], broken())
        }
    
        /**
         *  Expects one GET request, which fails with a 401 status code.
         */
        void expectGetUnauthorized(String path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ConcurrentHashMultiset.java

       * answer, which ours does not.
       */
    
      @Override
      public Object[] toArray() {
        return snapshot().toArray();
      }
    
      @Override
      @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations
      public <T extends @Nullable Object> T[] toArray(T[] array) {
        return snapshot().toArray(array);
      }
    
      /*
       * We'd love to use 'new ArrayList(this)' or 'list.addAll(this)', but
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    	// Add shims for legacy vet flags to enable existing
    	// scripts that run vet to continue to work.
    	_ = flag.Bool("source", false, "no effect (deprecated)")
    	_ = flag.Bool("v", false, "no effect (deprecated)")
    	_ = flag.Bool("all", false, "no effect (deprecated)")
    	_ = flag.String("tags", "", "no effect (deprecated)")
    	for old, new := range vetLegacyFlags {
    		newFlag := flag.Lookup(new)
    		if newFlag != nil && flag.Lookup(old) == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top