Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 733 for clocks (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	Nlink   uint64
    	Mode    uint32
    	Uid     uint32
    	Gid     uint32
    	_       int32
    	Rdev    uint64
    	Size    int64
    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	Blksize int64
    	Blocks  int64
    	_       [3]int64
    }
    
    type Stat_LE_t struct {
    	_            [4]byte // eye catcher
    	Length       uint16
    	Version      uint16
    	Mode         int32
    	Ino          uint32
    	Dev          uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationExecutor.java

        /**
         * Submits an arbitrary number of runnable operations, created synchronously by the scheduling action, to be executed in the global
         * build operation thread pool. Operations may execute concurrently. Blocks until all operations are complete.
         *
         * <p>Actions are not permitted to access any mutable project state. Generally, this is preferred.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/stackalloc.go

    			// Find an unused stack slot.
    			var i int
    			for i = 0; i < len(locs); i++ {
    				if !used[i] {
    					s.nReuse++
    					break
    				}
    			}
    			// If there is no unused stack slot, allocate a new one.
    			if i == len(locs) {
    				s.nAuto++
    				locs = append(locs, LocalSlot{N: f.NewLocal(v.Pos, v.Type), Type: v.Type, Off: 0})
    				locations[typeKey] = locs
    			}
    			// Use the stack variable at that index for v.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/Dependencies.java

    import javax.annotation.Nullable;
    import javax.inject.Inject;
    
    /**
     * Universal APIs that are available for all {@code dependencies} blocks.
     *
     * @apiNote This interface is intended to be used to mix-in DSL methods for {@code dependencies} blocks.
     * @implSpec The default implementation of all methods should not be overridden.
     * @implNote Changes to this interface may require changes to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 05:34:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/SuiteTestClassProcessorTest.groovy

    import org.gradle.internal.time.Clock
    import spock.lang.Specification
    
    class SuiteTestClassProcessorTest extends Specification {
        private final TestResultProcessor resultProcessor = Mock()
        private final TestClassProcessor targetProcessor = Mock()
        private final TestDescriptorInternal suiteDescriptor = Mock()
        private final TestClassRunInfo testClass = Mock()
        private final Clock timeProvider = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/build/relnote/links.go

    	case *md.Quote:
    		addSymbolLinksBlocks(b.Blocks, defaultPackage)
    	// no links in these blocks
    	case *md.CodeBlock:
    	case *md.HTMLBlock:
    	case *md.Empty:
    	case *md.ThematicBreak:
    	default:
    		panic(fmt.Sprintf("unknown block type %T", b))
    	}
    }
    
    // addSymbolLinksInlines looks for symbol links in the slice of inline markdown
    // elements. It returns a new slice of inline elements with links added.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/runtime/cpuprof.go

    	lock(&cpuprof.lock)
    	log := cpuprof.log
    	unlock(&cpuprof.lock)
    	readMode := profBufBlocking
    	if GOOS == "darwin" || GOOS == "ios" {
    		readMode = profBufNonBlocking // For #61768; on Darwin notes are not async-signal-safe.  See sigNoteSetup in os_darwin.go.
    	}
    	data, tags, eof := log.read(readMode)
    	if len(data) == 0 && eof {
    		lock(&cpuprof.lock)
    		cpuprof.log = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/DependencyLockingStrictModeIntegrationTest.groovy

            then:
            failureHasCause("Locking strict mode: Configuration ':lockedConf' is locked but does not have lock state.")
            failure.assertHasResolution("To create the lock state, run a task that performs dependency resolution and add '--write-locks' to the command line.")
            failure.assertHasResolution("For more information on generating lock state")
            lockfileFixture.expectLockStateMissing('unlockedConf')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. pkg/kubelet/logs/container_log_manager.go

    	}
    	return maxSize, nil
    }
    
    type containerLogManager struct {
    	runtimeService   internalapi.RuntimeService
    	osInterface      kubecontainer.OSInterface
    	policy           LogRotatePolicy
    	clock            clock.Clock
    	mutex            sync.Mutex
    	queue            workqueue.TypedRateLimitingInterface[string]
    	maxWorkers       int
    	monitoringPeriod metav1.Duration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux_test.go

    	"k8s.io/kubernetes/pkg/kubelet/prober"
    	probetest "k8s.io/kubernetes/pkg/kubelet/prober/testing"
    	"k8s.io/utils/clock"
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    // lock is to prevent systemDbus from being modified in the case of concurrency.
    var lock sync.Mutex
    
    type fakeDbus struct {
    	currentInhibitDelay        time.Duration
    	overrideSystemInhibitDelay time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top