Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 206 for Missing (0.77 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    func (st *state) compactNumber() int {
    	if len(st.str) == 0 {
    		st.fail("missing index")
    	}
    	if st.str[0] == '_' {
    		st.advance(1)
    		return 0
    	} else if st.str[0] == 'n' {
    		st.fail("unexpected negative number")
    	}
    	n := st.number()
    	if len(st.str) == 0 || st.str[0] != '_' {
    		st.fail("missing underscore after number")
    	}
    	st.advance(1)
    	return n + 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    	},
    	ErrMissingContentMD5: {
    		Code:           "MissingContentMD5",
    		Description:    "Missing required header for this request: Content-Md5.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingSecurityHeader: {
    		Code:           "MissingSecurityHeader",
    		Description:    "Your request was missing a required header",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingRequestBodyError: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  3. pkg/apis/flowcontrol/validation/validation_test.go

    				NonResourceURLs: []string{"/"},
    			}},
    		}},
    	}
    	testCases := []struct {
    		name           string
    		flowSchema     *flowcontrol.FlowSchema
    		expectedErrors field.ErrorList
    	}{{
    		name: "missing both resource and non-resource policy-rule should fail",
    		flowSchema: &flowcontrol.FlowSchema{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "system-foo",
    			},
    			Spec: flowcontrol.FlowSchemaSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    		{`package m5; func f() {}`, `f`, `<missing>`},
    		{`package m6; func _(x int) {}`, `x`, `<missing>`},
    		{`package m6; func _()(x int) { return }`, `x`, `<missing>`},
    		{`package m6; type T int; func (x T) _() {}`, `x`, `<missing>`},
    	}
    
    	for _, test := range tests {
    		info := Info{Types: make(map[ast.Expr]TypeAndValue)}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            outputContains("result = [b.jar.green, c.jar.green]")
    
            when:
            succeeds(":a:resolve", "-DbContent=")
    
            then: // file is missing, should run
            result.assertTasksNotSkipped(":b:producer", ":a:resolve")
            transformed("missing b.jar")
            outputContains("result = [b.jar.green, c.jar.green]")
    
            when:
            succeeds(":a:resolve")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_utils_test.go

    				},
    			},
    			// The missing UID is interpreted as an unexpected stale reference.
    			expectedRefs: []metav1.OwnerReference{},
    		},
    		{
    			name: "neither controller nor UID",
    			originalRefs: []metav1.OwnerReference{
    				{
    					APIVersion: "apps/v1",
    					Kind:       "StatefulSet",
    					Name:       "sts",
    				},
    			},
    			// The missing UID is interpreted as an unexpected stale reference.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    	// otherwise-missing test dependencies for packages in "all". For those test
    	// dependencies, we prefer to add roots for packages with shorter import
    	// stacks first, on the theory that the module requirements for those will
    	// tend to fill in the requirements for their transitive imports (which have
    	// deeper import stacks). So we add the missing dependencies for one depth at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/binder_test.go

    			expectedEvents:  noevents,
    			errors:          noerrors,
    			test:            testSyncVolume,
    		},
    		{
    			// syncVolume with volume bound to missing claim.
    			// Check the volume gets Released
    			name:            "4-3 - bound volume with missing claim",
    			initialVolumes:  newVolumeArray("volume4-3", "10Gi", "uid4-3", "claim4-3", v1.VolumeBound, v1.PersistentVolumeReclaimRetain, classEmpty),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  9. pkg/controller/endpointslice/endpointslice_controller_test.go

    	assert.Len(t, client.Actions(), 0)
    
    	// TriggerTimeTracker should have removed the reference to the missing service
    	assert.NotContains(t, esController.triggerTimeTracker.ServiceStates, missingServiceKey)
    
    	// TriggerTimeTracker should have left the reference to the missing service
    	assert.Contains(t, esController.triggerTimeTracker.ServiceStates, existingServiceKey)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

        @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "maven")
        def "virtual platform missing modules are cached across builds"() {
            // Disable daemon, so that the second run executes with the file cache
            // and therefore make sure that we read the "missing" status from disk
            executer.withArgument('--no-daemon')
    
            repository {
                path 'xml -> core'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
Back to top