Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 76 for returns_ (0.19 sec)

  1. src/cmd/link/internal/ld/data.go

    			rr.Xsym = rs
    			break
    		}
    		return rr, false
    
    	case objabi.R_XCOFFREF:
    		return ExtrelocSimple(ldr, r), true
    
    	// These reloc types don't need external relocations.
    	case objabi.R_ADDROFF, objabi.R_METHODOFF, objabi.R_ADDRCUOFF,
    		objabi.R_SIZE, objabi.R_CONST, objabi.R_GOTOFF:
    		return rr, false
    	}
    	return rr, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  2. src/cmd/internal/obj/arm64/asm7.go

    			return C_NPAUTO_16
    		}
    		if l >= -512 && (l&7) == 0 {
    			return C_NPAUTO
    		}
    		if l >= -1024 && (l&15) == 0 {
    			return C_NQAUTO_16
    		}
    		if l >= -4095 {
    			return C_NAUTO4K
    		}
    		return C_LAUTO
    	}
    
    	if l <= 255 {
    		if (l & 15) == 0 {
    			return C_PSAUTO_16
    		}
    		if (l & 7) == 0 {
    			return C_PSAUTO_8
    		}
    		if (l & 3) == 0 {
    			return C_PSAUTO_4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    	if err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	opts, err := getOpts(ctx, r, bucket, object)
    	if err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	getObjectInfo := objectAPI.GetObjectInfo
    
    	// Check for auth type to return S3 compatible error.
    	// type to return the correct error (NoSuchKey vs AccessDenied)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            public void applyConventionMappingToSetter(PropertyMetadata property, Method setter) {
                if (!conventionAware) {
                    return;
                }
    
                // GENERATE public <return-type> <setter>(<type> v) { <return-type> v = super.<setter>(v); __<prop>__ = true; return v; }
                addConventionSetter(setter, property);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/eviction_manager_test.go

    	summaryAfterGC       *statsapi.Summary
    }
    
    // DeleteUnusedImages returns the mocked values.
    func (m *mockDiskGC) DeleteUnusedImages(_ context.Context) error {
    	m.imageGCInvoked = true
    	if m.summaryAfterGC != nil && m.fakeSummaryProvider != nil {
    		m.fakeSummaryProvider.result = m.summaryAfterGC
    	}
    	return m.err
    }
    
    // DeleteAllUnusedContainers returns the mocked value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		return framework.Queue, nil
    	}
    	queueHintReturnSkip = func(logger klog.Logger, pod *v1.Pod, oldObj, newObj interface{}) (framework.QueueingHint, error) {
    		return framework.QueueSkip, nil
    	}
    )
    
    func setQueuedPodInfoGated(queuedPodInfo *framework.QueuedPodInfo) *framework.QueuedPodInfo {
    	queuedPodInfo.Gated = true
    	return queuedPodInfo
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    		if len(chain) != len(expectedChain) {
    			return false
    		}
    
    		for k, cert := range chain {
    			if !strings.Contains(nameToKey(&cert.Subject), expectedChain[k]) {
    				return false
    			}
    		}
    		return true
    	}
    
    	// Every expected chain should match one (or more) returned chain. We tolerate multiple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    	if (a != nil) != (b != nil) {
    		return false
    	}
    	if a == nil {
    		return true
    	}
    	if !reflect.DeepEqual(a.byName, b.byName) ||
    		len(a.lazyCerts) != len(b.lazyCerts) {
    		return false
    	}
    	for i := range a.lazyCerts {
    		la, lb := a.lazyCerts[i], b.lazyCerts[i]
    		if !bytes.Equal(la.rawSubject, lb.rawSubject) {
    			return false
    		}
    		ca, err := la.getCert()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	return nil
    }
    func (t *testRESTStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    func (t *testRESTStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    	return nil
    }
    func (t *testRESTStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    	}
    	// Else ensure its a valid header
    	if !validHeaderRegex.MatchString(name) {
    		return fmt.Errorf("header name %s is not a valid header name", name)
    	}
    	return nil
    }
    
    // ValidateHTTPHeaderWithAuthorityOperationName validates a header name when used to add/set in request.
    func ValidateHTTPHeaderWithAuthorityOperationName(name string) error {
    	if name == "" {
    		return fmt.Errorf("header name cannot be empty")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top