Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 127 for sesame (0.21 sec)

  1. pkg/kubelet/kubelet_node_status.go

    		klog.ErrorS(nil, "Node does not have NodeReady condition", "node", node)
    		return false
    	}
    
    	if nodeReady.Status == v1.ConditionFalse {
    		return false
    	}
    
    	klog.InfoS("Fast updating node status as it just became ready")
    	if _, err := kl.patchNodeStatus(originalNode, node); err != nil {
    		// The originalNode is probably stale, but we know that the current state of kubelet would turn
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    // that recorded the context, but only when the context is known to be
    // valid and unchanging. The traceback function may also be called
    // deeper in the call stack on the same thread that recorded the
    // context. The traceback function may be called multiple times with
    // the same Context value; it will usually be appropriate to cache the
    // result, if possible, the first time this is called for a specific
    // context value.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

     
    ## Changes by Kind
    
    ### Deprecation
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    }
    
    func generatePod(ip, name, namespace, saName, node string, labels map[string]string, annotations map[string]string) *corev1.Pod {
    	automount := false
    	return &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        name,
    			Labels:      labels,
    			Annotations: annotations,
    			Namespace:   namespace,
    		},
    		Spec: corev1.PodSpec{
    			ServiceAccountName:           saName,
    			NodeName:                     node,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        long toWaitMillis = 3500 - TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - thread.startTime);
        Thread.sleep(toWaitMillis);
        thread.setPriority(Thread.MAX_PRIORITY);
        thread.resume();
        thread.join();
        // It's possible to race and suspend the thread just before the park call actually takes effect,
        // causing the thread to be suspended for 3.5 seconds, and then park itself for 2 seconds after
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_generator.go

    		//      we don't need to do anything and let kubelet handle it.
    		//   2. It could be that - although we successfully expanded the volume, we failed to
    		//      record our work in API objects, in which case - we should resume resizing operation
    		//      and let API objects be updated.
    		//   3. Controller successfully expanded the volume, but expansion is failing on the node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

      # To join GCE instances to AD, we need to shorten their names, as NetBIOS name
      # must be <= 15 characters, and GKE generated names are longer than that.
      # To perform the join in an automated way, it's preferable to apply the rename
      # and domain join in the GCESysprep step. However, after sysprep is complete
      # and the machine restarts, kubelet bootstrapping should not use the shortened
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. src/syscall/syscall_linux.go

    	return err
    }
    
    //sys	readlinkat(dirfd int, path string, buf []byte) (n int, err error)
    
    func Readlink(path string, buf []byte) (n int, err error) {
    	return readlinkat(_AT_FDCWD, path, buf)
    }
    
    func Rename(oldpath string, newpath string) (err error) {
    	return Renameat(_AT_FDCWD, oldpath, _AT_FDCWD, newpath)
    }
    
    func Rmdir(path string) error {
    	return unlinkat(_AT_FDCWD, path, _AT_REMOVEDIR)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. cmd/storage-rest-server.go

    func (s *storageRESTServer) RenameDataInlineHandler(p *RenameDataInlineHandlerParams) (*RenameDataResp, *grid.RemoteErr) {
    	defer p.Recycle()
    	return s.RenameDataHandler(&p.RenameDataHandlerParams)
    }
    
    // RenameFileHandler - rename a file from source to destination
    func (s *storageRESTServer) RenameFileHandler(p *RenameFileHandlerParams) (grid.NoPayload, *grid.RemoteErr) {
    	if !s.checkID(p.DiskID) {
    		return grid.NewNPErr(errDiskNotFound)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. src/cmd/link/link_test.go

    	}
    
    	// Check that the binary contains the rsrc data
    	b, err := os.ReadFile(exe)
    	if err != nil {
    		t.Fatalf("reading output failed: %v", err)
    	}
    	if !bytes.Contains(b, []byte("resname RCDATA a.rc")) {
    		t.Fatalf("binary does not contain expected content")
    	}
    }
    
    func TestContentAddressableSymbols(t *testing.T) {
    	// Test that the linker handles content-addressable symbols correctly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top