Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for main2 (0.52 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			},
    		},
    		"kill the pod if all main containers succeeded if pod's RestartPolicy == Never": {
    			mutatePodFn: func(pod *v1.Pod) { pod.Spec.RestartPolicy = v1.RestartPolicyNever },
    			mutateStatusFn: func(pod *v1.Pod, status *kubecontainer.PodStatus) {
    				// all main containers succeeded
    				for i := 1; i <= 3; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	if len(pod.Spec.InitContainers) == 0 {
    		return nil, nil, true
    	}
    
    	// If any of the main containers have status and are Running, then all init containers must
    	// have been executed at some point in the past.  However, they could have been removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    The GAV coordinates are:
    
    - group `org.apache.pdfbox`
    - name `pdfbox`
    - version `2.0.17`
    
    Using this dependency will trigger the download of 2 different files:
    
    - `pdfbox-2.0.17.jar` which is the main artifact
    - `pdfbox-2.0.17.pom` which is the metadata file associated with this artifact
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // empty string if the object was updated through the main resource. The
      // value of this field is used to distinguish between managers, even if they
      // share the same name. For example, a status update will be distinct from a
      // regular update using the same manager name.
      // Note that the APIVersion field is not related to the Subresource field and
      // it always corresponds to the version of the main resource.
      optional string subresource = 8;
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // empty string if the object was updated through the main resource. The
      // value of this field is used to distinguish between managers, even if they
      // share the same name. For example, a status update will be distinct from a
      // regular update using the same manager name.
      // Note that the APIVersion field is not related to the Subresource field and
      // it always corresponds to the version of the main resource.
      optional string subresource = 8;
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

                    value { dimension_specs {} }
                  }
                }
              }
            }
            """,
            message=results,
        )
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    // license that can be found in the LICENSE file.
    
    // Memory allocator.
    //
    // This was originally based on tcmalloc, but has diverged quite a bit.
    // http://goog-perftools.sourceforge.net/doc/tcmalloc.html
    
    // The main allocator works in runs of pages.
    // Small allocation sizes (up to and including 32 kB) are
    // rounded to one of about 70 size classes, each of which
    // has its own free set of objects of exactly that size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/runtime/map.go

    		stop = newbit
    	}
    	for h.nevacuate != stop && bucketEvacuated(t, h, h.nevacuate) {
    		h.nevacuate++
    	}
    	if h.nevacuate == newbit { // newbit == # of oldbuckets
    		// Growing is all done. Free old main bucket array.
    		h.oldbuckets = nil
    		// Can discard old overflow buckets as well.
    		// If they are still referenced by an iterator,
    		// then the iterator holds a pointers to the slice.
    		if h.extra != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    			dirs = append(dirs, dir)
    		}
    		files = append(files, fileDir{base: file, dir: dirIdx})
    
    		// We can't use something that may be dead-code
    		// eliminated from a binary here. proc.go contains
    		// main and the scheduler, so it's not going anywhere.
    		if i := strings.Index(name, "runtime/proc.go"); i >= 0 && unit.Lib.Pkg == "runtime" {
    			d.dwmu.Lock()
    			if gdbscript == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Find the TPUReplicationMetadata or TPUCompilationResult ops which will be
      // cloned/inserted into each region. We add them to the merged_set so that
      // they're ignored when extracting the four main functions.
      found_op = nullptr;
      for (OpType op : func.getOps<OpType>()) {
        if (found_op != nullptr) {
          func.emitOpError() << "number of " << found_op.getOperationName()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top