Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 124 for elided (0.21 sec)

  1. android/guava/src/com/google/common/net/InetAddresses.java

        }
      }
    
      /**
       * Convert a list of hextets into a human-readable IPv6 address.
       *
       * <p>In order for "::" compression to work, the input should contain negative sentinel values in
       * place of the elided zeroes.
       *
       * @param hextets {@code int[]} array of eight 16-bit hextets, or -1s
       */
      private static String hextetsToIPv6String(int[] hextets) {
        // While scanning the array, handle these state transitions:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. src/os/exec.go

    }
    
    // UserTime returns the user CPU time of the exited process and its children.
    func (p *ProcessState) UserTime() time.Duration {
    	return p.userTime()
    }
    
    // SystemTime returns the system CPU time of the exited process and its children.
    func (p *ProcessState) SystemTime() time.Duration {
    	return p.systemTime()
    }
    
    // Exited reports whether the program has exited.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. cmd/import-boss/main.go

    				disp := rule.Evaluate(imp)
    				if disp == DepAllowed {
    					decided = true
    					break // no further rules, next file
    				} else if disp == DepForbidden {
    					errs = append(errs, fmt.Errorf("%q %s %q is forbidden by %s", pkg.PkgPath, relate(imp), imp, file.path))
    					decided = true
    					break // no further rules, next file
    				}
    			}
    			if decided {
    				break // no further files, next import
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    				makeGCSandbox(pods[0], 1, runtimeapi.PodSandboxState_SANDBOX_READY, true, false, 1),
    				// exited sandbox without containers.
    				makeGCSandbox(pods[0], 0, runtimeapi.PodSandboxState_SANDBOX_NOTREADY, true, false, 0),
    				// exited sandbox with containers.
    				makeGCSandbox(pods[1], 1, runtimeapi.PodSandboxState_SANDBOX_NOTREADY, true, false, 1),
    				// exited sandbox without containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. pkg/kubelet/prober/prober_manager_test.go

    	for _, w := range workerPaths {
    		condition := func() (bool, error) {
    			_, exists := m.getWorker(w.podUID, w.containerName, w.probeType)
    			return !exists, nil
    		}
    		if exited, _ := condition(); exited {
    			continue // Already exited, no need to poll.
    		}
    		t.Logf("Polling %v", w)
    		if err := wait.Poll(interval, wait.ForeverTestTimeout, condition); err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. pkg/kubelet/pleg/generic_test.go

    			ID: "4567",
    			Containers: []*kubecontainer.Container{
    				createTestContainer("c1", kubecontainer.ContainerStateExited),
    			},
    		}},
    	}
    	pleg.Relist()
    	// Report every running/exited container if we see them for the first time.
    	expected := []*PodLifecycleEvent{
    		{ID: "1234", Type: ContainerStarted, Data: "c2"},
    		{ID: "4567", Type: ContainerDied, Data: "c1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                tasks.register('update', UpdateTask) {
                    archive = theArchive
                    replacementText = 'edited by project2'
                }
    
                tasks.register('verify', VerifyTask) {
                    dependsOn tasks.named('update')
                    archive = theArchive
                    beginsWith = 'edited by project2'
                }
            """
    
            when:
            run 'verify'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/edit.go

    		rs, err = convertPruning(ctx, rs, rootPruning)
    		if err != nil {
    			return orig, false, err
    		}
    	}
    
    	// selectedRoot records the edited version (possibly "none") for each module
    	// path that would be a root in the edited requirements.
    	var selectedRoot map[string]string // module path → edited version
    	if rootPruning == pruned {
    		selectedRoot = maps.Clone(rs.maxRootVersion)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

                    LOGGER.warn("Worker daemon '" + candidate.getDisplayName() + "' exited unexpectedly after being killed with signal " + (exitCode - 128) + ".  This is likely because an external process has killed the worker.");
                } else {
                    LOGGER.warn("Worker daemon '" + candidate.getDisplayName() + "' exited unexpectedly with exit code " + exitCode + ".");
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. hack/golangci.yaml

          path-except: cmd/kubeadm
    
        # The following issues were deemed "might be worth fixing, needs to be
        # decided on a case-by-case basis".  This was initially decided by a
        # majority of the developers who voted in
        # https://github.com/kubernetes/kubernetes/issues/117288 and may evolve
        # over time.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top