Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for palmer (0.41 sec)

  1. pkg/apis/batch/validation/validation_test.go

    		`America/Yellowknife`,
    		`Antarctica/Casey`,
    		`Antarctica/Davis`,
    		`Antarctica/DumontDUrville`,
    		`Antarctica/Macquarie`,
    		`Antarctica/Mawson`,
    		`Antarctica/McMurdo`,
    		`Antarctica/Palmer`,
    		`Antarctica/Rothera`,
    		`Antarctica/South_Pole`,
    		`Antarctica/Syowa`,
    		`Antarctica/Troll`,
    		`Antarctica/Vostok`,
    		`Arctic/Longyearbyen`,
    		`Asia/Aden`,
    		`Asia/Almaty`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "@typescript-eslint/parser": "^5.0.0",
            "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
          },
          "peerDependenciesMeta": {
            "typescript": {
              "optional": true
            }
          }
        },
        "node_modules/@typescript-eslint/parser": {
          "version": "5.59.6",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.6.tgz",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    const (
    	// REG_NOTIFY_CHANGE_NAME notifies the caller if a subkey is added or deleted.
    	REG_NOTIFY_CHANGE_NAME = 0x00000001
    
    	// REG_NOTIFY_CHANGE_ATTRIBUTES notifies the caller of changes to the attributes of the key, such as the security descriptor information.
    	REG_NOTIFY_CHANGE_ATTRIBUTES = 0x00000002
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top