Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for addOption (0.32 sec)

  1. cmd/site-replication.go

    			ID: ruleID,
    
    			// Use a helper to generate unique priority numbers.
    			Priority: fmt.Sprintf("%d", getPriorityHelper(replicationConfig)),
    
    			Op:         replication.AddOption,
    			RuleStatus: "enable",
    			DestBucket: targetARN,
    			// Replicate everything!
    			ReplicateDeletes:        "enable",
    			ReplicateDeleteMarkers:  "enable",
    			ReplicaSync:             "enable",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. pkg/registry/batch/job/strategy_test.go

    				},
    				Spec: batch.JobSpec{
    					Selector:    validSelector,
    					Template:    validPodTemplateSpec,
    					Parallelism: ptr.To[int32](4),
    				},
    			},
    		},
    		"invalid addition of both Failed=True and Complete=True; allowed because feature gate disabled": {
    			enableJobManagedBy: false,
    			job: &batch.Job{
    				ObjectMeta: validObjectMeta,
    			},
    			newJob: &batch.Job{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

    	R_RISCV_TPREL_ADD     R_RISCV = 32 /* TLS LE thread usage */
    	R_RISCV_ADD8          R_RISCV = 33 /* 8-bit label addition */
    	R_RISCV_ADD16         R_RISCV = 34 /* 16-bit label addition */
    	R_RISCV_ADD32         R_RISCV = 35 /* 32-bit label addition */
    	R_RISCV_ADD64         R_RISCV = 36 /* 64-bit label addition */
    	R_RISCV_SUB8          R_RISCV = 37 /* 8-bit label subtraction */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // the file is considered to have an implicit build constraint requiring
    // those terms (in addition to any explicit constraints in the file).
    //
    // Using GOOS=android matches build tags and files as for GOOS=linux
    // in addition to android tags and files.
    //
    // Using GOOS=illumos matches build tags and files as for GOOS=solaris
    // in addition to illumos tags and files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * <h3>Cancelling</h3>
     *
     * Any step in a pipeline can be {@linkplain #cancel(boolean) cancelled}, even after another step
     * has been derived, with the same semantics as cancelling a {@link Future}. In addition, a
     * successfully cancelled step will immediately start closing all objects captured for later closing
     * by it and by its input steps.
     *
     * <h3>Ending a pipeline</h3>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    within matching brace brackets.
    </p>
    
    <pre class="ebnf">
    Block = "{" StatementList "}" .
    StatementList = { Statement ";" } .
    </pre>
    
    <p>
    In addition to explicit blocks in the source code, there are implicit blocks:
    </p>
    
    <ol>
    	<li>The <i>universe block</i> encompasses all Go source text.</li>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        ResultsBroadcastableShape,
        Pure,
        Commutative,
        QuantizableResult,
        DeclareOpInterfaceMethods<TFL_ArithmeticCount>]> {
      let summary = "Addition operator";
    
      let description = [{
        Element-wise addition operation.
      }];
    
      let arguments = (
        ins TFL_TensorOf<[F32, I16, I32, I64, QI8, QUI8, QI16]>:$lhs,
        TFL_TensorOf<[F32, I16, I32, I64, QI8, QUI8, QI16]>:$rhs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    		}
    		if v >= 0 && v <= 4095 && v&((1<<int32(s))-1) == 0 {
    			c.ctxt.Diag("%v: bad type for offset %d (should be 12 bit unsigned immediate store)", p, v)
    		}
    
    		// Handle smaller unaligned and negative offsets via addition or subtraction.
    		if v >= -4095 && v <= 4095 {
    			o1 = c.oaddi12(p, v, REGTMP, int16(r))
    			o2 = c.olsr12u(p, c.opstr(p, p.As), 0, REGTMP, p.From.Reg)
    			break
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    //
    // forEachG takes a lock to exclude concurrent addition of new Gs.
    func forEachG(fn func(gp *g)) {
    	lock(&allglock)
    	for _, gp := range allgs {
    		fn(gp)
    	}
    	unlock(&allglock)
    }
    
    // forEachGRace calls fn on every G from allgs.
    //
    // forEachGRace avoids locking, but does not exclude addition of new Gs during
    // execution, which may be missed.
    func forEachGRace(fn func(gp *g)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    				requests[v1.ResourceEphemeralStorage] = ephemeralStorage.DeepCopy()
    			}
    		}
    		//TODO(vinaykul,derekwaynecarr,InPlacePodVerticalScaling): Update this to include extended resources in
    		// addition to CPU, memory, ephemeral storage. Add test case for extended resources.
    		resources := &v1.ResourceRequirements{
    			Limits:   limits,
    			Requests: requests,
    		}
    		return resources
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top