Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,888 for current$ (0.35 sec)

  1. cmd/config-current.go

    Harshavardhana <******@****.***> 1717056898 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/prettyPrintResults.kt

                    appendNextIndented("name = ${current.name}\n")
                    current.receiver?.let {
                        appendNextIndented("receiver = ")
                        recurseDeeper(it)
                        appendLine()
                    }
                    if (current.args.isNotEmpty()) {
                        appendNextIndented("args = [\n")
                        current.args.forEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            "java home disagrees with executable" | null    | "other"   | "current"  | "executable"
            "tool disagrees with executable"      | "other" | null      | "current"  | "executable"
            "tool disagrees with java home"       | "other" | "current" | null       | "javaHome"
            "tool disagrees with "                | "other" | "current" | "current"  | "javaHome"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/policy.go

    }
    
    func NewHintMerger(numaInfo *NUMAInfo, hints [][]TopologyHint, policyName string, opts PolicyOptions) HintMerger {
    	compareNumaAffinityMasks := func(current, candidate *TopologyHint) *TopologyHint {
    		// If current and candidate bitmasks are the same, prefer current hint.
    		if candidate.NUMANodeAffinity.IsEqual(current.NUMANodeAffinity) {
    			return current
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

            if (current.state == State.CollectValue) {
                current.state = State.Done;
                current = current.parent;
            }
            if (current.state != State.TraverseChildren) {
                throw new IllegalStateException("Cannot end children.");
            }
            if (current.isTopLevelNode()) {
                writeNode(current);
            }
            current.state = State.Done;
            current = current.parent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    	// current contains the current value for the given metric
    	Current MetricValueStatus `json:"current" protobuf:"bytes,2,name=current"`
    }
    
    // ContainerResourceMetricStatus indicates the current value of a resource metric known to
    // Kubernetes, as specified in requests and limits, describing a single container in each pod in the
    // current scale target (e.g. CPU or memory).  Such metrics are built in to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/model/StateTransitionController.java

                CurrentState<T> current = state;
                current.assertInState(expected);
                try {
                    return action.get();
                } catch (Throwable t) {
                    state = current.failed(ExecutionResult.failed(t));
                    throw state.rethrow();
                }
            });
        }
    
        /**
         * Runs the given action, verifying the current state is not the forbidden state.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 03:31:44 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. pkg/registry/flowcontrol/ensurer/flowschema_test.go

    			bootstrap: newFlowSchema("fs1", "pl1", 100).Object(),
    			current:   nil,
    			expected:  newFlowSchema("fs1", "pl1", 100).Object(),
    		},
    		{
    			name:      "suggested flow schema exists, auto update is enabled, spec does not match - current object should be updated",
    			strategy:  NewSuggestedEnsureStrategy[*flowcontrolv1.FlowSchema],
    			bootstrap: newFlowSchema("fs1", "pl1", 100).Object(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_outside.txt

    stderr 'go: cannot match "rsc.io/quote/...": go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    
    
    # 'go clean' should skip the current directory if it isn't in a module.
    go clean -n
    ! stdout .
    ! stderr .
    
    # 'go mod graph' should fail, since there's no module graph.
    ! go mod graph
    stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    func (b *builder) add(n ast.Node) {
    	b.current.Nodes = append(b.current.Nodes, n)
    }
    
    // jump adds an edge from the current block to the target block,
    // and sets b.current to nil.
    func (b *builder) jump(target *Block) {
    	b.current.Succs = append(b.current.Succs, target)
    	b.current = nil
    }
    
    // ifelse emits edges from the current block to the t and f blocks,
    // and sets b.current to nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top