Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 125 for unlabel (0.14 sec)

  1. 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)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

        def "reasonable error message when format is invalid"() {
            when:
            parse("invalid")
    
            then:
            DependencyVerificationException e = thrown()
            e.message == "Unable to read dependency verification metadata"
        }
    
        def "reasonable error message when external xml entities are used"() {
    
            when:
            parse """<?xml version="1.0" encoding="UTF-8"?>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    		if err != nil {
    			logger.V(5).Info("Unable to look up plugin name from PV spec", "err", err)
    			return "", ""
    		}
    
    		if !isCSIMigrationOn(csiNode, pluginName) {
    			logger.V(5).Info("CSI Migration of plugin is not enabled", "plugin", pluginName)
    			return "", ""
    		}
    
    		csiPV, err := pl.translator.TranslateInTreePVToCSI(pv)
    		if err != nil {
    			logger.V(5).Info("Unable to translate in-tree volume to CSI", "err", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/helper.go

    			if len(opts.LabelSelector) == 0 && len(opts.FieldSelector) == 0 {
    				se.ErrStatus.Message = fmt.Sprintf("Unable to list %q: %v", subj,
    					se.ErrStatus.Message)
    			} else {
    				se.ErrStatus.Message = fmt.Sprintf(
    					"Unable to find %q that match label selector %q, field selector %q: %v", subj,
    					opts.LabelSelector,
    					opts.FieldSelector, se.ErrStatus.Message)
    			}
    			return se
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 03:45:13 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  5. internal/config/identity/ldap/ldap.go

    				return nil, nil
    			}
    			return nil, fmt.Errorf("Unable to find user DN: %w", err)
    		}
    		return bindDN, nil
    	}
    
    	// Since the username parses as a valid DN, check that it exists and is
    	// under a configured base DN in the LDAP directory.
    	validDN, isUnderBaseDN, err := l.GetValidatedUserDN(conn, username)
    	if err == nil && !isUnderBaseDN {
    		return nil, fmt.Errorf("Unable to find user DN: %w", err)
    	}
    	return validDN, err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  6. cmd/erasure-metadata_test.go

    		{3, 2},
    		// Replace existing part.
    		{4, 3},
    		// Missing part.
    		{6, -1},
    	}
    
    	// Setup.
    	fi := newFileInfo("test-object", 8, 8)
    	fi.Erasure.Index = 1
    	if !fi.IsValid() {
    		t.Fatalf("unable to get xl meta")
    	}
    
    	// Test them.
    	for _, testCase := range testCases {
    		if testCase.expectedIndex > -1 {
    			partNumString := strconv.Itoa(testCase.partNum)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 20:57:37 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/test/groovy/org/gradle/testkit/runner/internal/DefaultGradleRunnerTest.groovy

                    canWrite() >> false
                    getAbsolutePath() >> "path"
                }
            }
            Throwable t = thrown(InvalidRunnerConfigurationException)
            t.message == 'Unable to write to test kit directory: path'
        }
    
        def "throws exception if test kit exists and is not dir"() {
            when:
            createRunner().withProjectDir(workingDir).build()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. pkg/apis/batch/v1/defaults_test.go

    				},
    			},
    			expectLabels: true,
    		},
    		"All unspecified -> all pointers are defaulted and no default labels": {
    			original: &batchv1.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{"mylabel": "myvalue"},
    				},
    				Spec: batchv1.JobSpec{
    					Template: v1.PodTemplateSpec{
    						ObjectMeta: metav1.ObjectMeta{Labels: defaultLabels},
    					},
    				},
    			},
    			expected: &batchv1.Job{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/webhook/webhook_test.go

    					CertificateAuthorityData: []byte(`not a cert`),
    				},
    			},
    			user:     &defaultUser,
    			errRegex: "unable to load root certificates: unable to parse bytes as PEM block",
    		},
    		{
    			test: "cluster with invalid CA certificate - parse error",
    			cluster: &v1.NamedCluster{
    				Cluster: v1.Cluster{
    					Server: namedCluster.Cluster.Server,
    					CertificateAuthorityData: []byte(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    				if spec, ok := spec.(*ast.ValueSpec); ok {
    					b.add(spec)
    				}
    			}
    		}
    
    	case *ast.LabeledStmt:
    		label = b.labeledBlock(s.Label, s)
    		b.jump(label._goto)
    		b.current = label._goto
    		_s = s.Stmt
    		goto start // effectively: tailcall stmt(g, s.Stmt, label)
    
    	case *ast.ReturnStmt:
    		b.add(s)
    		b.current = b.newBlock(KindUnreachable, s)
    
    	case *ast.BranchStmt:
    		b.branchStmt(s)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top