Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for descriptor (0.33 sec)

  1. src/cmd/go/internal/test/test.go

    	//
    	// Since we know what causes those, and we know that they should resolve
    	// quickly (the ETXTBSY error will resolve as soon as the subprocess
    	// holding the descriptor open reaches its 'exec' call), we retry them
    	// in a loop.
    
    	var (
    		cmd            *exec.Cmd
    		t0             time.Time
    		cancelKilled   = false
    		cancelSignaled = false
    	)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    		if !ldr.AttrReachable(s) && !ctxt.linkShared {
    			// If -linkshared, the GCProg generation code may need to reach
    			// out to the shared library for the type descriptor's data, even
    			// the type descriptor itself is not actually needed at run time
    			// (therefore not reachable). We still need to mangle its name,
    			// so it is consistent with the one stored in the shared library.
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    	apiErr, ok := e[errCode]
    	if !ok {
    		apiErr = e[ErrInternalError]
    	}
    	if err != nil {
    		apiErr.Description = fmt.Sprintf("%s (%s)", apiErr.Description, err)
    	}
    	if region := globalSite.Region(); region != "" {
    		if errCode == ErrAuthorizationHeaderMalformed {
    			apiErr.Description = fmt.Sprintf("The authorization header is malformed; the region is wrong; expecting '%s'.", region)
    			return apiErr
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  4. cmd/bucket-handlers.go

    		if err != nil {
    			apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    			apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, err)
    			writeErrorResponse(ctx, w, apiErr, r.URL)
    			return
    		}
    		if maxParts <= 0 {
    			apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    			apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, multipart.ErrMessageTooLarge)
    			writeErrorResponse(ctx, w, apiErr, r.URL)
    			return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        }
    
        def "set description, visibility and transitivity"() {
            given:
            def configuration = conf()
    
            when:
            configuration.setDescription("description")
            configuration.setVisible(false)
            configuration.setTransitive(false)
    
            then:
            configuration.description == "description"
            !configuration.visible
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  6. cmd/admin-handlers-users.go

    	if targetUser == "" {
    		targetUser = cred.AccessKey
    	}
    
    	description := createReq.Description
    	if description == "" {
    		description = createReq.Comment
    	}
    	opts := newServiceAccountOpts{
    		accessKey:   createReq.AccessKey,
    		secretKey:   createReq.SecretKey,
    		name:        createReq.Name,
    		description: description,
    		expiration:  createReq.Expiration,
    		claims:      make(map[string]interface{}),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/manager_test.go

    			v1.ResourceName(res2.resourceName): res2.resourceQuantity}),
    	}
    	testCases := []struct {
    		description               string
    		testPod                   *v1.Pod
    		expectedContainerOptsLen  []int
    		expectedAllocatedResName1 int
    		expectedAllocatedResName2 int
    		expErr                    error
    	}{
    		{
    			description:               "Successful allocation of two Res1 resources and one Res2 resource",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    type ratchetingTestOperation interface {
    	Do(ctx *ratchetingTestContext) error
    	Description() string
    }
    
    type expectError struct {
    	op ratchetingTestOperation
    }
    
    func (e expectError) Do(ctx *ratchetingTestContext) error {
    	err := e.op.Do(ctx)
    	if err != nil {
    		return nil
    	}
    	return errors.New("expected error")
    }
    
    func (e expectError) Description() string {
    	return fmt.Sprintf("Expect Error: %v", e.op.Description())
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            return this;
        }
    
        @Override
        @Nullable
        public String getDescription() {
            return description;
        }
    
        @Override
        public Configuration setDescription(@Nullable String description) {
            this.description = description;
            return this;
        }
    
        @Override
        public Set<Configuration> getHierarchy() {
            if (extendsFrom.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                formatter.format("Multiple factories for objects of type %s available in %s:", format(type), getDisplayName());
                for (String description : descriptions) {
                    formatter.format("%n   - %s", description);
                }
                throw new ServiceLookupException(formatter.toString());
            }
    
            @Override
            public Service getService(Type type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top