Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 245 for palmer (0.12 sec)

  1. internal/config/storageclass/storage-class.go

    //
    // -- if input is RRS but RRS is not configured/initialized '-1' parity
    //
    //	for RRS is assumed, the caller is expected to choose the right parity
    //	at that point.
    //
    // -- if input is STANDARD but STANDARD is not configured/initialized '-1' parity
    //
    //	is returned, the caller is expected to choose the right parity
    //	at that point.
    func (sCfg *Config) GetParityForSC(sc string) (parity int) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/action.go

    		a = b.installAction(a, mode)
    	}
    
    	return a
    }
    
    // VetAction returns the action for running go vet on package p.
    // It depends on the action for compiling p.
    // If the caller may be causing p to be installed, it is up to the caller
    // to make sure that the install depends on (runs after) vet.
    func (b *Builder) VetAction(mode, depMode BuildMode, p *load.Package) *Action {
    	a := b.vetAction(mode, depMode, p)
    	a.VetxOnly = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. cni/pkg/install/install.go

    				return err
    			}
    		}
    	}
    	return nil
    }
    
    // sleepWatchInstall blocks until any file change for the binaries or config are detected.
    // At that point, the func yields so the caller can recheck the validity of the install.
    // If an error occurs or context is canceled, the function will return an error.
    func (in *Installer) sleepWatchInstall(ctx context.Context, installedBinFiles sets.String) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. pkg/controller/nodeipam/ipam/range_allocator.go

    var _ CIDRAllocator = &rangeAllocator{}
    
    // NewCIDRRangeAllocator returns a CIDRAllocator to allocate CIDRs for node (one from each of clusterCIDRs)
    // Caller must ensure subNetMaskSize is not less than cluster CIDR mask size.
    // Caller must always pass in a list of existing nodes so the new allocator.
    // Caller must ensure that ClusterCIDRs are semantically correct e.g (1 for non DualStack, 2 for DualStack etc..)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. src/go/types/generate_test.go

    	}
    }
    
    func generate(t *testing.T, filename string, write bool) {
    	// parse src (cmd/compile/internal/types2)
    	srcFilename := filepath.FromSlash(runtime.GOROOT() + srcDir + filename)
    	file, err := parser.ParseFile(fset, srcFilename, nil, parser.ParseComments)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// fix package name
    	file.Name.Name = strings.ReplaceAll(file.Name.Name, "types2", "types")
    
    	// rewrite AST as needed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. src/runtime/syscall_windows.go

    	// arguments. The same is true on arm.
    
    	oldParts := p.parts
    	if p.tryRegAssignArg(t, 0) {
    		// Account for spill space.
    		//
    		// TODO(mknyszek): Remove this when we no longer have
    		// caller reserved spill space.
    		p.dstSpill = alignUp(p.dstSpill, uintptr(t.Align_))
    		p.dstSpill += t.Size_
    	} else {
    		// Register assignment failed.
    		// Undo the work and stack assign.
    		p.parts = oldParts
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. internal/ioutil/ioutil.go

    		timeout: timeout,
    	}
    	return dw
    }
    
    // Run runs the given function, passing it a stopper channel. If the deadline passes before
    // the function finishes executing, Run returns context.DeadlineExceeded to the caller.
    // channel so that the work function can attempt to exit gracefully.
    // Multiple calls to Run will run independently of each other.
    func (d *DeadlineWorker) Run(work func() error) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    #include "mlir/IR/OwningOpRef.h"  // from @llvm-project
    #include "mlir/InitAllDialects.h"  // from @llvm-project
    #include "mlir/InitAllPasses.h"  // from @llvm-project
    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "mlir/Pass/PassRegistry.h"  // from @llvm-project
    #include "mlir/Support/FileUtilities.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/runtime/tracestack.go

    		} else if gp != nil {
    			// Three cases:
    			//
    			// (1) We're called on the g0 stack through mcall(fn) or systemstack(fn). To
    			// behave like gcallers above, we start unwinding from sched.bp, which
    			// points to the caller frame of the leaf frame on g's stack. The return
    			// address of the leaf frame is stored in sched.pc, which we manually
    			// capture here.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/runtime/panic.go

    	// (the function used in the defer statement).
    	// p.argp is the argument pointer of that topmost deferred function call.
    	// Compare against argp reported by caller.
    	// If they match, the caller is the one who can recover.
    	gp := getg()
    	p := gp._panic
    	if p != nil && !p.goexit && !p.recovered && argp == uintptr(p.argp) {
    		p.recovered = true
    		return p.arg
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top