Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 315 for unlabel (0.14 sec)

  1. pkg/kubelet/config/file_linux_test.go

    			dirName, err := mkTempDir("dir-test")
    			if err != nil {
    				t.Fatalf("unable to create temp dir: %v", err)
    			}
    			defer removeAll(dirName, t)
    
    			fileName := fmt.Sprintf("%s_%d", fileNamePre, index)
    			var linkedDirName string
    			if symlink {
    				linkedDirName, err = mkTempDir("linked-dir-test")
    				if err != nil {
    					t.Fatalf("unable to create temp dir for linked files: %v", err)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  2. cni/pkg/plugin/cnieventclient.go

    	}
    	return eventC
    }
    
    func PushCNIEvent(cniClient CNIEventClient, event *skel.CmdArgs, prevResIps []*cniv1.IPConfig, podName, podNamespace string) error {
    	if event == nil {
    		return fmt.Errorf("unable to push CNI event, CmdArgs event was nil")
    	}
    
    	var ncconfigs []nodeagent.IPConfig
    	for _, ipc := range prevResIps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		Value:    make([]int64, len(src.Value)),
    		Label:    make(map[string][]string, len(src.Label)),
    		NumLabel: make(map[string][]int64, len(src.NumLabel)),
    		NumUnit:  make(map[string][]string, len(src.NumLabel)),
    	}
    	for i, l := range src.Location {
    		s.Location[i] = pm.mapLocation(l)
    	}
    	for k, v := range src.Label {
    		vv := make([]string, len(v))
    		copy(vv, v)
    		s.Label[k] = vv
    	}
    	for k, v := range src.NumLabel {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/switch.go

    		//   ... search among length 5 strings ...
    		//   goto endLabel
    		// len8:
    		//   ... search among length 8 strings ...
    		//   goto endLabel
    		// ... other lengths ...
    		// outerLabel:
    		// switch len(s) {
    		//   case 5: goto len5
    		//   case 8: goto len8
    		//   ... other lengths ...
    		// }
    		// endLabel:
    
    		outerLabel := typecheck.AutoLabel(".s")
    		endLabel := typecheck.AutoLabel(".s")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/partially_decluster_pass.cc

        //
        //   Input -> OP -> Shape -> F -> Reshape
        //
        // Doing so will break up the cluster.  Even if we were okay with breaking
        // up the cluster we will at least have to relabel the two clusters to have
        // different cluster names.
        //
        // We may want to revisit this in the future: we may have cases where OP is
        // a small computation that does not benefit from XLA while XLA can optimize
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/branches.go

    		}
    	}
    
    	// spec: "It is illegal to define a label that is never used."
    	for _, l := range ls.labels {
    		if !l.used {
    			l := l.lstmt.Label
    			ls.err(l.Pos(), "label %s defined and not used", l.Value)
    		}
    	}
    }
    
    type labelScope struct {
    	errh   ErrorHandler
    	labels map[string]*label // all label declarations inside the function; allocated lazily
    }
    
    type label struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/util/NumberUtilTest.groovy

            percentOf(50, -10) == 0
    
            then:
            def ex = thrown(IllegalArgumentException)
            ex.message == "Unable to calculate percentage: 50 of -10. All inputs must be >= 0"
    
            when:
            percentOf(-1, 100) == 0
            then:
            ex = thrown(IllegalArgumentException)
            ex.message == "Unable to calculate percentage: -1 of 100. All inputs must be >= 0"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. internal/deadlineconn/deadlineconn_test.go

    )
    
    // Test deadlineconn handles read timeout properly by reading two messages beyond deadline.
    func TestBuffConnReadTimeout(t *testing.T) {
    	l, err := net.Listen("tcp", "localhost:0")
    	if err != nil {
    		t.Fatalf("unable to create listener. %v", err)
    	}
    	defer l.Close()
    	serverAddr := l.Addr().String()
    
    	tcpListener, ok := l.(*net.TCPListener)
    	if !ok {
    		t.Fatalf("failed to assert to net.TCPListener")
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Nov 05 18:09:21 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. src/internal/trace/event/go122/event.go

    	EvHeapGoal           // gcController.heapGoal() change [timestamp, heap goal in bytes]
    
    	// Annotations.
    	EvGoLabel         // apply string label to current running goroutine [timestamp, label string ID]
    	EvUserTaskBegin   // trace.NewTask [timestamp, internal task ID, internal parent task ID, name string ID, stack ID]
    	EvUserTaskEnd     // end of a task [timestamp, internal task ID, stack ID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. src/cmd/trace/testdata/go122.test

    GoStart dt=118 g=22 g_seq=5
    GoLabel dt=1 label_string=2
    GoBlock dt=7117 reason_string=15 stack=27
    ProcStop dt=41
    ProcStart dt=150567 p=4 p_seq=7
    GoUnblock dt=41 g=23 g_seq=4 stack=0
    HeapAlloc dt=108 heapalloc_value=17163592
    HeapAlloc dt=61 heapalloc_value=17166856
    HeapAlloc dt=2994 heapalloc_value=17608712
    GoStart dt=1008 g=23 g_seq=5
    GoLabel dt=4 label_string=4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
Back to top