Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for Avery (0.2 sec)

  1. pkg/kubelet/kubelet_pods.go

    	// and deliver an update. The most common reason a pod is not known is because the pod was
    	// deleted and recreated with the same UID while the pod worker was driving its lifecycle (very
    	// very rare for API pods, common for static pods with fixed UIDs). Containers that may still
    	// be running from a previous execution must be reconciled by the pod worker's sync method.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    // instruction. Unused arguments and fields are not explicitly enumerated, and
    // should not be listed for clarity. Unused arguments and values should always
    // assume the default value for the given type.
    //
    // optab does not list every valid ppc64 opcode, it enumerates representative
    // operand combinations for a class of instruction.  The variable oprange indexes
    // all valid ppc64 opcodes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        def file = inputArtifact.get().asFile
                        println "Transforming \${file.name} with MakeGreen"
                        outputs.file(file.name + ".green").text = "very green"
                    }
                }
    
                project(':util') {
                    dependencies {
                        compile project(':lib')
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	// Start volume manager
    	go kl.volumeManager.Run(kl.sourcesReady, wait.NeverStop)
    
    	if kl.kubeClient != nil {
    		// Start two go-routines to update the status.
    		//
    		// The first will report to the apiserver every nodeStatusUpdateFrequency and is aimed to provide regular status intervals,
    		// while the second is used to provide a more timely status update during initialization and runs an one-shot update to the apiserver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        auto slice_size =
            rewriter.create<arith::ConstantOp>(op.getLoc(), slice_size_attr);
    
        ArrayRef<int64_t> strides = op.getStrides();
        // If stride of every dimension is 1, create tfl.slice and return early.
        // Otherwise, create tfl.strided_slice instead.
        if (llvm::all_of(strides, [](int64_t stride) { return stride == 1; })) {
          rewriter.replaceOpWithNewOp<TFL::SliceOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.cc

      } else {
        return ToOperation(iter->second);
      }
    }
    
    TF_Operation* TF_GraphNextOperation(TF_Graph* graph, size_t* pos) {
      if (*pos == 0) {
        // Advance past the first sentinel nodes in every graph (the source & sink).
        *pos += 2;
      } else {
        // Advance to the next node.
        *pos += 1;
      }
    
      mutex_lock l(graph->mu);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. pkg/apis/apps/validation/validation_test.go

    			expectErr: false,
    		},
    		"invalid : minReadySeconds enabled, negative": {
    			ss:        generateStatefulSetSpec(-1),
    			expectErr: true,
    		},
    		"valid : minReadySeconds enabled, very large value": {
    			ss:        generateStatefulSetSpec(2147483647),
    			expectErr: false,
    		},
    		"invalid : minReadySeconds enabled, large negative": {
    			ss:        generateStatefulSetSpec(-2147483648),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    		poolsArgs := re.ReplaceAllString(cmdLine, `$3`)
    		var anonPools []string
    
    		if !(strings.Contains(poolsArgs, "{") && strings.Contains(poolsArgs, "}")) {
    			// No ellipses pattern. Anonymize host name from every pool arg
    			pools := strings.Fields(poolsArgs)
    			anonPools = make([]string, len(pools))
    			for index, arg := range pools {
    				anonPools[index] = anonAddr(arg)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // See golang.org/s/go15vendor for more about vendoring.
    //
    // An import path can also name a package to be downloaded from
    // a remote repository. Run 'go help importpath' for details.
    //
    // Every package in a program must have a unique import path.
    // By convention, this is arranged by starting each path with a
    // unique prefix that belongs to you. For example, paths used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    		{Pod: pod},
    	}
    	kubelet := testKubelet.kubelet
    	kubelet.cgroupsPerQOS = true // enable cgroupsPerQOS to turn on the cgroups cleanup
    
    	// HandlePodCleanups gets called every 2 seconds within the Kubelet's
    	// housekeeping routine. This test registers the pod, removes the unwanted pod, then calls into
    	// HandlePodCleanups a few more times. We should only see one Destroy() event. podKiller runs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top