Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for destroys (4.31 sec)

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

        byte[] targetCopyArray = new byte[numBytes];
    
        int srcPos = Math.max(0, addressBytes.length - numBytes);
        int copyLength = addressBytes.length - srcPos;
        int destPos = numBytes - copyLength;
    
        // Check the extra bytes in the BigInteger are all zero.
        for (int i = 0; i < srcPos; i++) {
          if (addressBytes[i] != 0x00) {
            throw formatIllegalArgumentException(
    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/internal/trace/order.go

    	// GoSwitch and GoSwitchDestroy represent a trio of events:
    	// - Unblock of the goroutine to switch to.
    	// - Block or destroy of the current goroutine.
    	// - Start executing the next goroutine.
    	//
    	// Because it acts like a GoStart for the next goroutine, we can
    	// only advance it if the sequence numbers line up.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. src/syscall/exec_linux_test.go

    		}
    		t.Fatalf("Cmd failed with err %v, output: %s", err, out)
    	}
    	strOut := strings.TrimSpace(string(out))
    	t.Logf("id: %s", strOut)
    
    	expected := "uid=0(root) gid=0(root)"
    	// Just check prefix because some distros reportedly output a
    	// context parameter; see https://golang.org/issue/16224.
    	// Alpine does not output groups; see https://golang.org/issue/19938.
    	if !strings.HasPrefix(strOut, expected) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InetAddresses.java

        byte[] targetCopyArray = new byte[numBytes];
    
        int srcPos = Math.max(0, addressBytes.length - numBytes);
        int copyLength = addressBytes.length - srcPos;
        int destPos = numBytes - copyLength;
    
        // Check the extra bytes in the BigInteger are all zero.
        for (int i = 0; i < srcPos; i++) {
          if (addressBytes[i] != 0x00) {
            throw formatIllegalArgumentException(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/kernels/xla_ops.cc

        : XlaLocalLaunchBase(ctx, ConstantsVector(ctx), ResourcesVector(ctx),
                             FunctionAttr(ctx), /*has_ref_vars=*/true) {}
    
    XlaLocalLaunchOp::~XlaLocalLaunchOp() {
      VLOG(1) << "XlaLocalLaunchOp destroyed";
    }
    
    XlaCompileOp::XlaCompileOp(OpKernelConstruction* ctx)
        : OpKernel(ctx),
          constants_(ConstantsVector(ctx)),
          resources_(ResourcesVector(ctx)),
          function_(FunctionAttr(ctx)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/storage/eviction_test.go

    	return nil
    }
    
    func (ms *mockStore) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error) {
    	return nil, nil
    }
    
    func (ms *mockStore) Destroy() {
    }
    
    func unhealthyPolicyPtr(unhealthyPodEvictionPolicy policyv1.UnhealthyPodEvictionPolicyType) *policyv1.UnhealthyPodEvictionPolicyType {
    	return &unhealthyPodEvictionPolicy
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (1)
  7. pkg/kubelet/kubelet_pods.go

    		}
    		klog.V(3).InfoS("Orphaned pod found, removing pod cgroups", "podUID", uid)
    		// Destroy all cgroups of pod that should not be running,
    		// by first killing all the attached processes to these cgroups.
    		// We ignore errors thrown by the method, as the housekeeping loop would
    		// again try to delete these unwanted pod cgroups
    		go pcm.Destroy(val)
    	}
    }
    
    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. src/runtime/export_test.go

    		unlock(&mheap_.lock)
    
    		getg().m.mallocing--
    	})
    	return
    }
    
    func PageCachePagesLeaked() (leaked uintptr) {
    	stw := stopTheWorld(stwForTestPageCachePagesLeaked)
    
    	// Walk over destroyed Ps and look for unflushed caches.
    	deadp := allp[len(allp):cap(allp)]
    	for _, p := range deadp {
    		// Since we're going past len(allp) we may see nil Ps.
    		// Just ignore them.
    		if p != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  9. src/cmd/trace/testdata/go122.test

    String id=135
    	data="net.newTCPConn"
    String id=136
    	data="syscall.Close"
    String id=137
    	data="internal/poll.(*SysFile).destroy"
    String id=138
    	data="/usr/local/google/home/mknyszek/work/go-1/src/internal/poll/fd_unixjs.go"
    String id=139
    	data="internal/poll.(*FD).destroy"
    String id=140
    	data="internal/poll.(*FD).decref"
    String id=141
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	// remove any cgroups in the hierarchy for pods that are no longer running.
    	if kl.cgroupsPerQOS {
    		pcm := kl.containerManager.NewPodContainerManager()
    		name, _ := pcm.GetPodContainerName(pod)
    		if err := pcm.Destroy(name); err != nil {
    			return err
    		}
    		klog.V(4).InfoS("Pod termination removed cgroups", "pod", klog.KObj(pod), "podUID", pod.UID)
    	}
    
    	kl.usernsManager.Release(pod.UID)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top