Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 4,605 for statx (0.07 sec)

  1. android/guava/src/com/google/common/util/concurrent/Service.java

      boolean isRunning();
    
      /** Returns the lifecycle state of the service. */
      State state();
    
      /**
       * If the service is {@linkplain State#STARTING starting} or {@linkplain State#RUNNING running},
       * this initiates service shutdown and returns immediately. If the service is {@linkplain
       * State#NEW new}, it is {@linkplain State#TERMINATED terminated} without having been started nor
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. src/encoding/gob/enc_helpers.go

    	for _, x := range slice {
    		if x != "" || state.sendZero {
    			state.encodeUint(uint64(len(x)))
    			state.b.WriteString(x)
    		}
    	}
    	return true
    }
    
    func encUintArray(state *encoderState, v reflect.Value) bool {
    	// Can only slice if it is addressable.
    	if !v.CanAddr() {
    		return false
    	}
    	return encUintSlice(state, v.Slice(0, v.Len()))
    }
    
    func encUintSlice(state *encoderState, v reflect.Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 17:50:11 UTC 2018
    - 9.9K bytes
    - Viewed (0)
  3. src/html/template/transition.go

    	}
    	switch c.state {
    	case stateJSBlockCmt:
    		c.state = stateJS
    	case stateCSSBlockCmt:
    		c.state = stateCSS
    	default:
    		panic(c.state.String())
    	}
    	return c, i + 2
    }
    
    // tLineCmt is the context transition function for //comment states, and the JS HTML-like comment state.
    func tLineCmt(c context, s []byte) (context, int) {
    	var lineTerminators string
    	var endState state
    	switch c.state {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.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. subprojects/core/src/test/groovy/org/gradle/internal/service/scopes/ProjectBackedPropertyHostTest.groovy

    import org.gradle.internal.state.ModelObject
    import spock.lang.Specification
    
    class ProjectBackedPropertyHostTest extends Specification {
        def state = new ProjectStateInternal()
        def project = Stub(ProjectInternal)
        def host = new ProjectBackedPropertyHost(project)
    
        def setup() {
            _ * project.displayName >> "<project>"
            _ * project.state >> state
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Aug 28 21:50:20 UTC 2022
    - 3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    		return
    	}
    	c.file.register(c)
    
    	state := c.state.load()
    	for ; ; state = c.state.load() {
    		switch {
    		case !state.locked() && state.havePtr():
    			if !c.state.update(&state, state.incReader()) {
    				continue
    			}
    			// Counter unlocked or counter shared; has an initialized count pointer; acquired shared lock.
    			if c.ptr.count == nil {
    				for !c.state.update(&state, state.addExtra(uint64(n))) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

        }
    
        @Override
        public void requestStop(String reason) {
            lock.lock();
            try {
                if (state != State.StopRequested && state != State.Stopped && state != State.ForceStopped) {
                    LOGGER.lifecycle(DAEMON_WILL_STOP_MESSAGE + reason);
                    if (state == State.Busy) {
                        LOGGER.debug("Stop as soon as idle requested. The daemon is busy");
                        beginStopping();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. src/cmd/covdata/argsmerge.go

    	goarch string
    }
    
    type argstate struct {
    	state       argvalues
    	initialized bool
    }
    
    func (a *argstate) Merge(state argvalues) {
    	if !a.initialized {
    		a.state = state
    		a.initialized = true
    		return
    	}
    	if !slices.Equal(a.state.osargs, state.osargs) {
    		a.state.osargs = nil
    	}
    	if state.goos != a.state.goos {
    		a.state.goos = ""
    	}
    	if state.goarch != a.state.goarch {
    		a.state.goarch = ""
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 10:18:37 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    }
    
    func copyStat(stat *Stat_t, statLE *Stat_LE_t) {
    	stat.Dev = uint64(statLE.Dev)
    	stat.Ino = uint64(statLE.Ino)
    	stat.Nlink = uint64(statLE.Nlink)
    	stat.Mode = uint32(statLE.Mode)
    	stat.Uid = uint32(statLE.Uid)
    	stat.Gid = uint32(statLE.Gid)
    	stat.Rdev = uint64(statLE.Rdev)
    	stat.Size = statLE.Size
    	stat.Atim.Sec = int64(statLE.Atim)
    	stat.Atim.Nsec = 0 //zos doesn't return nanoseconds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/CatchExceptionTaskExecuterTest.groovy

        private TaskStateInternal state = new TaskStateInternal()
        private TaskExecutionContext context = Mock(TaskExecutionContext)
    
        def 'calls delegate and does nothing'() {
            when:
            executer.execute(task, state, context)
    
            then:
            1 * delegate.execute(task, state, context) >> {
                state.setOutcome(TaskExecutionOutcome.EXECUTED)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:34:36 UTC 2019
    - 2.3K bytes
    - Viewed (0)
Back to top