Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,320 for notC (0.51 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller.go

    // IPs allocated to a service entry may differ from istiod to istiod
    // but it does not matter because these IPs only affect the listener
    // IPs on a given proxy managed by a given istiod.
    //
    // NOTE: If DNS capture is not enabled by the proxy, the automatically
    // allocated IP addresses do not take effect.
    //
    // The current algorithm to allocate IPs is deterministic across all istiods.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	//   indicates that the spec of the object has not been changed.
    	// - it is set to 'false' if generation of the object is greater than 1.
    	//
    	// The goal is to enable the kube-apiserver to apply update on suggested
    	// configuration objects installed by previous releases but not overwrite
    	// changes made by the cluster operators.
    	// Note that this distinction is imperfectly detected: in the case where an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    	return nil
    }
    
    // GarbageCollect removes dead containers using the specified container gc policy.
    // Note that gc policy is not applied to sandboxes. Sandboxes are only removed when they are
    // not ready and containing no containers.
    //
    // GarbageCollect consists of the following steps:
    // * gets evictable containers which are not active and created more than gcPolicy.MinAge ago.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. pkg/volume/volume.go

    	// Used represents the total bytes used by the Volume.
    	// Note: For block devices this maybe more than the total size of the files.
    	Used *resource.Quantity
    
    	// Capacity represents the total capacity (bytes) of the volume's
    	// underlying storage. For Volumes that share a filesystem with the host
    	// (e.g. emptydir, hostpath) this is the size of the underlying storage,
    	// and will not equal Used + Available as the fs is shared.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/runtime/alg.go

    //   - github.com/v2fly/v2ray-core/v5
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname strhash
    func strhash(p unsafe.Pointer, h uintptr) uintptr
    
    func strhashFallback(a unsafe.Pointer, h uintptr) uintptr {
    	x := (*stringStruct)(a)
    	return memhashFallback(x.str, h, uintptr(x.len))
    }
    
    // NOTE: Because NaN != NaN, a map can contain any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/shell.go

    			aj.CmdSys += ps.SystemTime()
    		}
    	}
    
    	// err can be something like 'exit status 1'.
    	// Add information about what program was running.
    	// Note that if buf.Bytes() is non-empty, the caller usually
    	// shows buf.Bytes() and does not print err at all, so the
    	// prefix here does not make most output any more verbose.
    	if err != nil {
    		err = errors.New(cmdline[0] + ": " + err.Error())
    	}
    	return buf.Bytes(), err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. src/runtime/symtab.go

    	// for Go functions. Note that //line directives can change the
    	// filename and/or line number arbitrarily within a function, meaning
    	// that the Line - startLine offset is not always meaningful.
    	//
    	// This may be zero if not known.
    	startLine int
    
    	// Entry point program counter for the function; may be zero
    	// if not known. If Func is not nil then Entry ==
    	// Func.Entry().
    	Entry uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/informers.go

    			//
    			// If we get to this point and have a pod that really and truly has no IP in either of those,
    			// it's not routable at this point and something is wrong/we should discard this event.
    			podIPs := util.GetPodIPsIfPresent(pod)
    			if len(podIPs) == 0 {
    				log.Warnf("pod %s does not appear to have any assigned IPs, not capturing", pod.Name)
    				return nil
    			}
    
    			err := s.dataplane.AddPodToMesh(s.ctx, pod, podIPs, "")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/runtime/panic.go

    func panicCheck1(pc uintptr, msg string) {
    	if goarch.IsWasm == 0 && stringslite.HasPrefix(funcname(findfunc(pc)), "runtime.") {
    		// Note: wasm can't tail call, so we can't get the original caller's pc.
    		throw(msg)
    	}
    	// TODO: is this redundant? How could we be in malloc
    	// but not in the runtime? runtime/internal/*, maybe?
    	gp := getg()
    	if gp != nil && gp.m != nil && gp.m.mallocing != 0 {
    		throw(msg)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.proto

      // Typically, this is not set and per-workload identity is used to verify
      // TODO: support this field
      repeated string subject_alt_names = 6;
      // Waypoint is the waypoint proxy for this service. When set, all incoming requests must go
      // through the waypoint.
      GatewayAddress waypoint = 7;
    
      // Load balancing policy for selecting endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top