Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for Percent (0.18 sec)

  1. pkg/kubelet/kubelet_test.go

    					ContainerID: emptyContainerID,
    				}},
    			},
    		},
    		// For terminated container:
    		// * If there is no recent start error record, State should be Terminated, LastTerminationState should be retrieved from
    		// second latest terminated status;
    		// * If there is recent start error record, State should be Waiting, LastTerminationState should be retrieved from latest
    		// terminated status;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⫳":                          "\u2af3",
    	"⫽":                           "\u2afd",
    	"∂":                            "\u2202",
    	"п":                             "\u043f",
    	"%":                          "\u0025",
    	".":                          "\u002e",
    	"‰":                          "\u2030",
    	"⊥":                            "\u22a5",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    	}
    	for group := range info.GroupStats {
    		c.healGroupPolicies(ctx, objAPI, group, info)
    	}
    
    	return nil
    }
    
    // heal iam policies present on this site to peers, provided current cluster has the most recent update.
    func (c *SiteReplicationSys) healPolicies(ctx context.Context, objAPI ObjectLayer, policy string, info srStatusInfo) error {
    	// create IAM policy on peer cluster if missing
    	ps := info.PolicyStats[policy]
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	klet.usernsManager, err = userns.MakeUserNsManager(klet)
    	if err != nil {
    		return nil, err
    	}
    	klet.admitHandlers.AddPodAdmitHandler(shutdownAdmitHandler)
    
    	// Finally, put the most recent version of the config on the Kubelet, so
    	// people can see how it was configured.
    	klet.kubeletConfiguration = *kubeCfg
    
    	// Generating the status funcs should be the last thing we do,
    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. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    func GetServByName(name string, proto string) (s *Servent, err error) {
    	var _p0 *byte
    	_p0, err = syscall.BytePtrFromString(name)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = syscall.BytePtrFromString(proto)
    	if err != nil {
    		return
    	}
    	return _GetServByName(_p0, _p1)
    }
    
    func _GetServByName(name *byte, proto *byte) (s *Servent, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

          - Forced
          - By constraint
    
    org:leaf:1.0 -> 2.0
    \\--- org:foo:1.0
         \\--- conf
    
    org:leaf:1.4 -> 2.0
    \\--- conf
    """
        }
    
        def "shows decent failure when inputs missing"() {
            given:
            buildFile << """
                task insight(type: DependencyInsightReportTask) {
                    showingAllVariants = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	return kubecontainer.ParseContainerID(cID), nil
    }
    
    // GetKubeletContainerLogs returns logs from the container
    // TODO: this method is returning logs of random container attempts, when it should be returning the most recent attempt
    // or all of them.
    func (kl *Kubelet) GetKubeletContainerLogs(ctx context.Context, podFullName, containerName string, logOptions *v1.PodLogOptions, stdout, stderr io.Writer) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    	// ReplicateExistingDelete - audit trail for delete replication triggered for existing delete markers
    	ReplicateExistingDelete = "replicate:existing:delete"
    
    	// ReplicateMRF - audit trail for replication from Most Recent Failures (MRF) queue
    	ReplicateMRF = "replicate:mrf"
    	// ReplicateIncoming - audit trail of inline replication
    	ReplicateIncoming = "replicate:incoming"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

        long last = -1L;
        for (int i = 0; i < CONTAINS_VALUE_RETRIES; i++) {
          long sum = 0L;
          for (Segment<K, V> segment : segments) {
            // ensure visibility of most recent completed write
            int unused = segment.count; // read-volatile
    
            AtomicReferenceArray<ReferenceEntry<K, V>> table = segment.table;
            for (int j = 0; j < table.length(); j++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	}
    	return save
    }
    
    // innerPrinter is an interface for types that can print themselves as
    // inner types.
    type innerPrinter interface {
    	printInner(*printState)
    }
    
    // Print the most recent inner type.  If save is not nil, only print
    // prefixes.
    func (ps *printState) printOneInner(save *[]AST) {
    	if len(ps.inner) == 0 {
    		panic("printOneInner called with no inner types")
    	}
    	ln := len(ps.inner)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top