Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Consumes (0.41 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_working_pods gauge
    				kubelet_working_pods{config="desired",lifecycle="sync",static=""} 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    //	-args
    //	    Pass the remainder of the command line (everything after -args)
    //	    to the test binary, uninterpreted and unchanged.
    //	    Because this flag consumes the remainder of the command line,
    //	    the package list (if present) must appear before this flag.
    //
    //	-c
    //	    Compile the test binary to pkg.test in the current directory but do not run it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *
       * @param consumer a callback whose method will be called (using {@code executor}) when this
       *     operation is done
       */
      public void finishToValueAndCloser(
          final ValueAndCloserConsumer<? super V> consumer, Executor executor) {
        checkNotNull(consumer);
        if (!compareAndUpdateState(OPEN, WILL_CREATE_VALUE_AND_CLOSER)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                            compile rootProject.file("project-artifact.jar")
                        }
                    }
                """
            }
            def consumerIncludedBuild = new BuildTestFile(file("consumer-included-build"), "consumer-included-build")
            consumerIncludedBuild.with {
                it.createDirs("lib-project/producer", "app", "util", "lib")
                settingsFile << """
                    include(":lib-project:producer")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. src/net/http/server.go

    			switch err {
    			case nil:
    				// There must be even more data left over.
    				tooBig = true
    			case ErrBodyReadAfterClose:
    				// Body was already consumed and closed.
    			case io.EOF:
    				// The remaining body was just consumed, close it.
    				err = w.reqBody.Close()
    				if err != nil {
    					w.closeAfterReply = true
    				}
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    		return next.ptr(), true
    	}
    
    	for {
    		h := atomic.LoadAcq(&pp.runqhead) // load-acquire, synchronize with other consumers
    		t := pp.runqtail
    		if t == h {
    			return nil, false
    		}
    		gp := pp.runq[h%uint32(len(pp.runq))].ptr()
    		if atomic.CasRel(&pp.runqhead, h, h+1) { // cas-release, commits consume
    			return gp, false
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/helpers_test.go

    		if pods[i] != expected[i] {
    			t.Errorf("Expected pod[%d]: %s, but got: %s", i, expected[i].Name, pods[i].Name)
    		}
    	}
    }
    
    // TestOrderedByPriorityDisk ensures we order pods by priority and then greediest resource consumer
    func TestOrderedByPriorityDisk(t *testing.T) {
    	pod1 := newPod("above-requests-low-priority-high-usage", lowPriority, []v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Maps.java

              return entrySpliterator();
            }
    
            @Override
            public void forEach(Consumer<? super Entry<K, V>> action) {
              forEachEntry(action);
            }
          };
        }
    
        void forEachEntry(Consumer<? super Entry<K, V>> action) {
          entryIterator().forEachRemaining(action);
        }
    
        @Override
        public void clear() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def TPUParallelExecuteSinkResourceWritePass : Pass<"tf-tpu-parallel-execute-sink-resource-write", "mlir::func::FuncOp"> {
      let summary = "Moves tf.AssignVariableOp consumers of tf_device.parallel_execute "
               "into tf_device.parallel_execute regions";
    
      let constructor = "TFTPU::CreateTPUParallelExecuteSinkResourceWritePass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    	return saveConfig(ctx, objectAPI, configFile, buf)
    }
    
    // getReplicationDiff returns un-replicated objects in a channel.
    // If a non-nil channel is returned it must be consumed fully or
    // the provided context must be canceled.
    func getReplicationDiff(ctx context.Context, objAPI ObjectLayer, bucket string, opts madmin.ReplDiffOpts) (chan madmin.DiffInfo, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top