Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 919 for previousN (0.22 sec)

  1. src/testing/benchmark.go

    type B struct {
    	common
    	importPath       string // import path of the package containing the benchmark
    	context          *benchContext
    	N                int
    	previousN        int           // number of iterations in the previous run
    	previousDuration time.Duration // total duration of the previous run
    	benchFunc        func(b *B)
    	benchTime        durationOrCountFlag
    	bytes            int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. pkg/volume/util/nestedpendingoperations/nestedpendingoperations.go

    	}
    
    	opIndex := -1
    	for previousOpIndex, previousOp := range grm.operations {
    		volumeNameMatch := previousOp.key.volumeName == key.volumeName
    
    		podNameMatch := previousOp.key.podName == EmptyUniquePodName ||
    			key.podName == EmptyUniquePodName ||
    			previousOp.key.podName == key.podName
    
    		podNameExactMatch := previousOp.key.podName == key.podName
    
    		nodeNameMatch := previousOp.key.nodeName == EmptyNodeName ||
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

    :a
    \\--- :c
         \\--- :b
              \\--- :a (*)
    
    (*) - details omitted (listed previously)
    """)
        }
    
        def "cannot add a task with must run after induced circular reference that was previously in graph but not required"() {
            Task a = createTask("a")
            Task b = task("b", mustRunAfter: [a])
            Task c = task("c", dependsOn: [b])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  4. src/sync/map.go

    		if e.unexpungeLocked() {
    			// The entry was previously expunged, which implies that there is a
    			// non-nil dirty map and this entry is not in it.
    			m.dirty[key] = e
    		}
    		if v := e.swapLocked(&value); v != nil {
    			loaded = true
    			previous = *v
    		}
    	} else if e, ok := m.dirty[key]; ok {
    		if v := e.swapLocked(&value); v != nil {
    			loaded = true
    			previous = *v
    		}
    	} else {
    		if !read.amended {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    ```kotlin
    includeBuild("some-other-build") {
        name = "another-name"
    }
    ```
    
    The previous behavior was problematic as it caused different names to be used at different times during the build.
    
    ==== buildSrc is now reserved as a project and subproject build name
    
    Previously, Gradle did not prevent using the name “buildSrc” for a subproject of a multi-project build or as the name of an included build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

            if (previousNodes != null) {
                for (ResolutionNode previous : previousNodes) {
                    try {
                        if (previous.isActive()) {
                            // Version mediation
                            VersionRange previousRange = previous.getArtifact().getVersionRange();
                            VersionRange currentRange = node.getArtifact().getVersionRange();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileFilesFactory.java

        }
    
        private class DefaultIncrementalCompileSourceProcessor implements IncrementalCompileSourceProcessor {
            private final CompilationState previous;
            private final BuildableCompilationState current = new BuildableCompilationState();
            private final List<File> toRecompile = new ArrayList<File>();
            private final Set<File> existingHeaders = new HashSet<File>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

        // Whether a previous access of this resource already tracks the last
        // unknown read(s).
        bool are_last_unknown_reads_tracked = false;
        // Whether a previous write access of this resource already tracks the last
        // unknown write.
        bool is_last_unknown_write_tracked_by_write = false;
        // Whether a previous read or write access of this resource already tracks
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cpumanager/state/state_checkpoint_test.go

    	require.NoErrorf(t, err, "could not create testing checkpoint manager: %v", err)
    
    	for _, tc := range testCases {
    		t.Run(tc.description, func(t *testing.T) {
    			// ensure there is no previous checkpoint
    			cpm.RemoveCheckpoint(testingCheckpoint)
    
    			// prepare checkpoint for testing
    			if strings.TrimSpace(tc.checkpointContent) != "" {
    				checkpoint := &testutil.MockCheckpoint{Content: tc.checkpointContent}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  10. pkg/proxy/endpointschangetracker.go

    	for nn, change := range changes {
    		if ect.processEndpointsMapChange != nil {
    			ect.processEndpointsMapChange(change.previous, change.current)
    		}
    		result.UpdatedServices.Insert(nn)
    
    		em.unmerge(change.previous)
    		em.merge(change.current)
    		detectStaleConntrackEntries(change.previous, change.current, &result.DeletedUDPEndpoints, &result.NewlyActiveUDPServices)
    	}
    	ect.checkoutTriggerTimes(&result.LastChangeTriggerTimes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top