Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for CurrentState (0.42 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    		vn[i] = vn[i][:0]
    	}
    
    	// Slot and register contents for currentState. Cleared by reset().
    	if cap(state.currentState.slots) < numSlots {
    		state.currentState.slots = make([]VarLoc, numSlots)
    	} else {
    		state.currentState.slots = state.currentState.slots[:numSlots]
    	}
    	if cap(state.currentState.registers) < len(state.registers) {
    		state.currentState.registers = make([][]SlotID, len(state.registers))
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            return name;
        }
    
        @Override
        public State getState() {
            Optional<ResolverResults> currentState = currentResolveState.get();
            if (!currentState.isPresent()) {
                return State.UNRESOLVED;
            }
    
            ResolverResults resolvedState = currentState.get();
            if (resolvedState.getVisitedGraph().hasAnyFailure()) {
                return State.RESOLVED_WITH_FAILURES;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/service.go

    )
    
    type ENUM_SERVICE_STATUS struct {
    	ServiceName   *uint16
    	DisplayName   *uint16
    	ServiceStatus SERVICE_STATUS
    }
    
    type SERVICE_STATUS struct {
    	ServiceType             uint32
    	CurrentState            uint32
    	ControlsAccepted        uint32
    	Win32ExitCode           uint32
    	ServiceSpecificExitCode uint32
    	CheckPoint              uint32
    	WaitHint                uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/printers/template_test.go

    		}
    		if e := item.expect; e != actual {
    			t.Errorf("%v: expected %v, got %v", name, e, actual)
    		}
    	}
    }
    
    func TestTemplatePanic(t *testing.T) {
    	tmpl := `{{and ((index .currentState.info "foo").state.running.startedAt) .currentState.info.net.state.running.startedAt}}`
    	printer, err := NewGoTemplatePrinter([]byte(tmpl))
    	if err != nil {
    		t.Fatalf("tmpl fail: %v", err)
    	}
    	buffer := &bytes.Buffer{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 22 23:10:00 UTC 2019
    - 7.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

            addNode(node)
            node.state = currentState
    
            when:
            bindings.add(rule)
    
            then:
            IllegalStateException e = thrown()
            e.message == "Cannot add rule <rule> for model element 'a' at state ${requiredState.previous()} as this element is already at state $currentState."
    
            where:
            currentState                | requiredState
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                for (WorkerState worker : workers) {
                    ExecutionState currentState = worker.state.get();
                    if (currentState == ExecutionState.Running) {
                        return null;
                    } else if (currentState == ExecutionState.Waiting) {
                        waitingWorkers++;
                    } else if (currentState == ExecutionState.Stopped) {
                        stoppedWorkers++;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableKuromojiTokenizerFactory.java

                    attributeImplsField.set(this, attributeImplsObj);
    
                    final Field currentStateField = getAccessibleField(AttributeSource.class, "currentState");
                    final Object currentStateObj = currentStateField.get(tokenizer);
                    currentStateField.set(this, currentStateObj);
                } catch (final Exception e) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. src/internal/syscall/windows/syscall_windows.go

    type SERVICE_STATUS struct {
    	ServiceType             uint32
    	CurrentState            uint32
    	ControlsAccepted        uint32
    	Win32ExitCode           uint32
    	ServiceSpecificExitCode uint32
    	CheckPoint              uint32
    	WaitHint                uint32
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. src/os/os_windows_test.go

    	if err != nil {
    		return
    	}
    	defer syscall.CloseHandle(srv)
    	var state windows.SERVICE_STATUS
    	err = windows.QueryServiceStatus(srv, &state)
    	if err != nil {
    		return
    	}
    	if state.CurrentState != windows.SERVICE_RUNNING {
    		t.Skip("Requires the Windows service Workstation, but it is detected that it is not enabled.")
    	}
    }
    
    func TestNetworkSymbolicLink(t *testing.T) {
    	testenv.MustHaveSymlink(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top