Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,475 for happen (0.14 sec)

  1. pkg/registry/core/service/storage/alloc.go

    	//does (and is tested!).  Fixing that all is a big PR and will have to
    	//happen later.
    	if txn, err := al.txnAllocClusterIPs(service, dryRun); err != nil {
    		return nil, err
    	} else {
    		result = append(result, txn)
    	}
    
    	// Allocate ports
    	if txn, err := al.txnAllocNodePorts(service, dryRun); err != nil {
    		return nil, err
    	} else {
    		result = append(result, txn)
    	}
    
    	success = true
    	return result, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  2. src/go/doc/reader.go

    	if fun.Recv != nil {
    		// method
    		if len(fun.Recv.List) == 0 {
    			// should not happen (incorrect AST); (See issue 17788)
    			// don't show this method
    			return
    		}
    		recvTypeName, imp := baseTypeName(fun.Recv.List[0].Type)
    		if imp {
    			// should not happen (incorrect AST);
    			// don't show this method
    			return
    		}
    		if typ := r.lookupType(recvTypeName); typ != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p224.go

    	buf := append(out[:0], 4)
    	buf = append(buf, x.Bytes()...)
    	buf = append(buf, y.Bytes()...)
    	return buf
    }
    
    // BytesX returns the encoding of the x-coordinate of p, as specified in SEC 1,
    // Version 2.0, Section 2.3.5, or an error if p is the point at infinity.
    func (p *P224Point) BytesX() ([]byte, error) {
    	// This function is outlined to make the allocations inline in the caller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p521.go

    	buf := append(out[:0], 4)
    	buf = append(buf, x.Bytes()...)
    	buf = append(buf, y.Bytes()...)
    	return buf
    }
    
    // BytesX returns the encoding of the x-coordinate of p, as specified in SEC 1,
    // Version 2.0, Section 2.3.5, or an error if p is the point at infinity.
    func (p *P521Point) BytesX() ([]byte, error) {
    	// This function is outlined to make the allocations inline in the caller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 17K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

    // output side to satisfy the constraint of the next operation.
    struct RequantizeState {
      // Sometimes, we have to "requantize" the quantization result to satisfy all
      // the constraints. The "requantize" can happen either on the input or output
      // of the quantization result.
      enum RequantizePosition {
        NO_REQUANTIZE,
        ON_INPUT,
        ON_OUTPUT
      } pos = NO_REQUANTIZE;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

         *      is ignored, the parameter is only present to remind us that a followup is necessary, and
         *      to record how it will happen.
         */
        SmokeTestGradleRunner expectDeprecationWarning(String warning, String followup) {
            if (followup == null || followup.isBlank()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. src/encoding/json/decode.go

    func (d *decodeState) arrayInterface() []any {
    	var v = make([]any, 0)
    	for {
    		// Look ahead for ] - can only happen on first iteration.
    		d.scanWhile(scanSkipSpace)
    		if d.opcode == scanEndArray {
    			break
    		}
    
    		v = append(v, d.valueInterface())
    
    		// Next token must be , or ].
    		if d.opcode == scanSkipSpace {
    			d.scanWhile(scanSkipSpace)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. pkg/controller/nodeipam/ipam/range_allocator.go

    				continue
    			}
    			logger.V(4).Info("Node has CIDR, occupying it in CIDR map", "node", klog.KObj(&node), "podCIDR", node.Spec.PodCIDR)
    			if err := ra.occupyCIDRs(&node); err != nil {
    				// This will happen if:
    				// 1. We find garbage in the podCIDRs field. Retrying is useless.
    				// 2. CIDR out of range: This means a node CIDR has changed.
    				// This error will keep crashing controller-manager.
    				return nil, err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. src/go/types/generate_test.go

    	"assignments.go": func(f *ast.File) {
    		renameImportPath(f, `"cmd/compile/internal/syntax"->"go/ast"`)
    		renameSelectorExprs(f, "syntax.Name->ast.Ident", "ident.Value->ident.Name", "ast.Pos->token.Pos") // must happen before renaming identifiers
    		renameIdents(f, "syntax->ast", "poser->positioner", "nopos->noposn")
    	},
    	"array.go":          nil,
    	"api_predicates.go": nil,
    	"basic.go":          nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    			clientObjs = append(clientObjs, test.updatedPVC)
    			informersObjs = append(informersObjs, test.updatedPVC)
    		}
    		if test.updatedPod != nil {
    			clientObjs = append(clientObjs, test.updatedPod)
    			informersObjs = append(informersObjs, test.updatedPod)
    		}
    		clientObjs = append(clientObjs, test.initialObjects...)
    		if !test.informersAreLate {
    			informersObjs = append(informersObjs, test.initialObjects...)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top