Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 156 for statDep (0.4 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            ComponentGraphResolveState state = potentialEdge.state;
            VirtualPlatformState virtualPlatformState = null;
            if (state == null || state instanceof LenientPlatformGraphResolveState) {
                virtualPlatformState = potentialEdge.component.getModule().getPlatformState();
                virtualPlatformState.participatingModule(component.getModule());
            }
            if (state == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    	return string(policyTypeMock)
    }
    
    func (p *mockPolicy) Start(s state.State) error {
    	return p.err
    }
    
    func (p *mockPolicy) Allocate(s state.State, pod *v1.Pod, container *v1.Container) error {
    	return p.err
    }
    
    func (p *mockPolicy) RemoveContainer(s state.State, podUID string, containerName string) {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  3. src/html/template/escape_test.go

    			context{state: stateHTMLCmt},
    		},
    		{
    			`<!--->`,
    			context{state: stateHTMLCmt},
    		},
    		{
    			`<!-- foo -->`,
    			context{state: stateText},
    		},
    		{
    			`<script`,
    			context{state: stateTag, element: elementScript},
    		},
    		{
    			`<script `,
    			context{state: stateTag, element: elementScript},
    		},
    		{
    			`<script src="foo.js" `,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    maybeAddDefaultConfiguration();
                } else if ((state == State.DEP_ARTIFACT && "artifact".equals(qName))
                        || (state == State.ARTIFACT_INCLUDE && "include".equals(qName))
                        || (state == State.ARTIFACT_EXCLUDE && "exclude".equals(qName))) {
                    state = State.DEP;
                    if (confAware.getConfigurations().length == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. pkg/kubelet/status/status_manager_test.go

    		t.Helper()
    		if state.Terminated == nil || state.Running != nil || state.Waiting != nil {
    			t.Fatalf("unexpected state: %#v", state)
    		}
    		if state.Terminated.ExitCode != exitCode {
    			t.Fatalf("unexpected terminated state: %#v", state.Terminated)
    		}
    	}
    	expectWaiting := func(t *testing.T, state v1.ContainerState) {
    		t.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    			state.varSlots[i] = state.varSlots[i][:0]
    		}
    	}
    	if cap(state.slotVars) < len(state.slots) {
    		state.slotVars = make([]VarID, len(state.slots))
    	} else {
    		state.slotVars = state.slotVars[:len(state.slots)]
    	}
    
    	if state.partsByVarOffset == nil {
    		state.partsByVarOffset = &partsByVarOffset{}
    	}
    	for varID, n := range state.vars {
    		parts := state.varParts[n]
    		state.varSlots[varID] = parts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/regexp/testdata/testregex.c

    			if (state.warnings)
    				printf(", %d warning%s", state.warnings, state.warnings == 1 ? "" : "s");
    			if (state.unspecified)
    				printf(", %d unspecified difference%s", state.unspecified, state.unspecified == 1 ? "" : "s");
    			if (state.signals)
    				printf(", %d signal%s", state.signals, state.signals == 1 ? "" : "s");
    			printf(", %d error%s\n", state.errors, state.errors == 1 ? "" : "s");
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework.go

    		}
    		f.runPostBindPlugin(ctx, pl, state, pod, nodeName)
    	}
    }
    
    func (f *frameworkImpl) runPostBindPlugin(ctx context.Context, pl framework.PostBindPlugin, state *framework.CycleState, pod *v1.Pod, nodeName string) {
    	if !state.ShouldRecordPluginMetrics() {
    		pl.PostBind(ctx, state, pod, nodeName)
    		return
    	}
    	startTime := time.Now()
    	pl.PostBind(ctx, state, pod, nodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			// state is produced for test.existingPods (without test.addedPod).
    			ipa, cycleState, state, snapshot := getState(test.existingPods)
    			// clone the state so that we can compare it later when performing Remove.
    			originalState := state.Clone()
    
    			// Add test.addedPod to state1 and verify it is equal to allPodsState.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		service          *testKMSv2EnvelopeService
    		state            envelopekmsv2.State
    		useSeed          bool
    		statusKeyID      string
    		wantState        envelopekmsv2.State
    		wantEncryptCalls int
    		wantLogs         []string
    		wantErr          string
    	}{
    		{
    			name:        "happy path, no previous state",
    			service:     &testKMSv2EnvelopeService{keyID: "1"},
    			state:       envelopekmsv2.State{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
Back to top