Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for palmer (0.28 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    		// lets use sizes handed over to us by caller for comparison
    		if rsOpts.NewSize.Cmp(rsOpts.OldSize) > 0 {
    			pv := volumeToMount.VolumeSpec.PersistentVolume
    			pvc, err := og.kubeClient.CoreV1().PersistentVolumeClaims(pv.Spec.ClaimRef.Namespace).Get(context.TODO(), pv.Spec.ClaimRef.Name, metav1.GetOptions{})
    			if err != nil {
    				// Return error rather than leave the file system un-resized, caller will log and retry
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      }
      Type type;
      return failure(parser.parseOperandList(ops) ||
                     parser.parseOptionalAttrDict(result.attributes) ||
                     parser.parseColonType(type) ||
                     parser.resolveOperands(ops, type, result.operands) ||
                     parser.addTypeToList(type, result.types));
    }
    
    void printOneResultOp(Operation* op, OpAsmPrinter& p) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    //
    // This function is allowed to have write barriers even if the caller
    // isn't because it borrows pp.
    //
    //go:yeswritebarrierrec
    func allocm(pp *p, fn func(), id int64) *m {
    	allocmLock.rlock()
    
    	// The caller owns pp, but we may borrow (i.e., acquirep) it. We must
    	// disable preemption to ensure it is not stolen, which would make the
    	// caller lose ownership.
    	acquirem()
    
    	gp := getg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/net/http/server.go

    	if w.conn.hijacked() {
    		caller := relevantCaller()
    		w.conn.server.logf("http: response.WriteHeader on hijacked connection from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
    		return
    	}
    	if w.wroteHeader {
    		caller := relevantCaller()
    		w.conn.server.logf("http: superfluous response.WriteHeader call from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/reflect/value.go

    	// The allocation of MapIter can be stack allocated if the caller
    	// does not allow it to escape.
    	// See https://blog.filippo.io/efficient-go-apis-with-the-inliner/
    	if v.kind() != Map {
    		v.panicNotMap()
    	}
    	return &MapIter{m: v}
    }
    
    // Force slow panicking path not inlined, so it won't add to the
    // inlining budget of the caller.
    // TODO: undo when the inliner is no longer bottom-up only.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

              /// TODO(aminim): this is overly conservative as some operations
              /// (like TPUPartitionedCallOp) may have extra operands that aren't
              /// propagated to the callee.
              return isa<CallOpInterface>(caller) &&
                     std::equal(caller->getOperandTypes().begin(),
                                caller->getOperandTypes().end(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    	if value == nil {
    		ns.String, ns.Valid = "", false
    		return nil
    	}
    	ns.Valid = true
    	return convertAssign(&ns.String, value)
    }
    
    // Value implements the [driver.Valuer] interface.
    func (ns NullString) Value() (driver.Value, error) {
    	if !ns.Valid {
    		return nil, nil
    	}
    	return ns.String, nil
    }
    
    // NullInt64 represents an int64 that may be null.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

    		}
    	}
    
    	// clears the To to avoid echo internals trying to match the protocol with the port on echo.Config
    	noTarget := func(_ echo.Caller, opts *echo.CallOptions) {
    		opts.To = nil
    	}
    	// allows setting the target indirectly via the host header
    	fqdnHostHeader := func(src echo.Caller, opts *echo.CallOptions) {
    		if opts.HTTP.Headers == nil {
    			opts.HTTP.Headers = make(http.Header)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    func dirToImportPath(dir string) string {
    	return pathpkg.Join("_", strings.Map(makeImportValid, filepath.ToSlash(dir)))
    }
    
    func makeImportValid(r rune) rune {
    	// Should match Go spec, compilers, and ../../go/parser/parser.go:/isValidImport.
    	const illegalChars = `!"#$%&'()*,:;<=>?[\]^{|}` + "`\uFFFD"
    	if !unicode.IsGraphic(r) || unicode.IsSpace(r) || strings.ContainsRune(illegalChars, r) {
    		return '_'
    	}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    if (applyRole) {
                        applyRole();
                    }
                }
    
                // Caller should place property value on the top of the stack
                protected void applyRole() {
                    // GENERATE getFactory().applyRole(<value>)
                    _ALOAD(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
Back to top