Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for incremented (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                transformActionClass == "MakeGreen"
    
                transformerName == "MakeGreen"
                subjectName == "producer.jar (project :included:producer)"
            }
        }
    
        def "incremental project transform execution can be up-to-date or from build cache"() {
            createDirs("producer", "consumer")
            settingsFile << """
                include 'producer', 'consumer'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/options_test.go

    	"--node-monitor-grace-period=30s",
    	"--node-monitor-period=10s",
    	"--node-startup-grace-period=30s",
    	"--profiling=false",
    	"--pv-recycler-increment-timeout-nfs=45",
    	"--pv-recycler-minimum-timeout-hostpath=45",
    	"--pv-recycler-minimum-timeout-nfs=200",
    	"--pv-recycler-timeout-increment-hostpath=45",
    	"--pvclaimbinder-sync-period=30s",
    	"--resource-quota-sync-period=10m",
    	"--route-reconciliation-period=30s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Only plugins which use the infrastructure provided by Gradle for performing requests will see their requests verified.
    --
    
    [[sec:verification-update]]
    === Using generation for incremental updates
    
    The verification file generated by Gradle has a strict ordering for all its content.
    It also uses the information from the existing state to limit changes to the strict minimum.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // RUN_ALL_TESTS().  In particular, it parses a command line for the
    // flags that Google Test recognizes.  Whenever a Google Test flag is
    // seen, it is removed from argv, and *argc is decremented.
    //
    // No value is returned.  Instead, the Google Test flag variables are
    // updated.
    //
    // Calling the function for the second time has no user-visible effect.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    // best-effort, so it may perform less work if it fails to get a work
    // buffer. Otherwise, it will perform at least n units of work, but
    // may perform more because scanning is always done in whole object
    // increments. It returns the amount of scan work performed.
    //
    // The caller goroutine must be in a preemptible state (e.g.,
    // _Gwaiting) to prevent deadlocks during stack scanning. As a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // RUN_ALL_TESTS().  In particular, it parses a command line for the
    // flags that Google Test recognizes.  Whenever a Google Test flag is
    // seen, it is removed from argv, and *argc is decremented.
    //
    // No value is returned.  Instead, the Google Test flag variables are
    // updated.
    //
    // Calling the function for the second time has no user-visible effect.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //   * Condition start < end must be satisfied in order for resulting sequences
    //     to contain any elements.
    //
    template <typename T, typename IncrementT>
    internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
      return internal::ParamGenerator<T>(
          new internal::RangeGenerator<T, IncrementT>(start, end, step));
    }
    
    template <typename T>
    internal::ParamGenerator<T> Range(T start, T end) {
      return Range(start, end, 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  8. src/net/http/client_test.go

    			continue
    		}
    
    		res.Body.Close()
    	}
    }
    
    // issue18239Body is an io.ReadCloser for TestTransportBodyReadError.
    // Its Read returns readErr and increments *readCalls atomically.
    // Its Close returns nil and increments *closeCalls atomically.
    type issue18239Body struct {
    	readCalls  *int32
    	closeCalls *int32
    	readErr    error
    }
    
    func (b issue18239Body) Read([]byte) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers_test.go

    	return work
    }
    
    type timeIncrementingWorkers struct {
    	lock    sync.Mutex
    	w       *podWorkers
    	runtime *containertest.FakeRuntime
    	holds   map[types.UID]chan struct{}
    }
    
    // UpdatePod increments the clock after UpdatePod is called, but before the workers
    // are invoked, and then drains all workers before returning. The provided functions
    // are invoked while holding the lock to prevent workers from receiving updates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //   * Condition start < end must be satisfied in order for resulting sequences
    //     to contain any elements.
    //
    template <typename T, typename IncrementT>
    internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
      return internal::ParamGenerator<T>(
          new internal::RangeGenerator<T, IncrementT>(start, end, step));
    }
    
    template <typename T>
    internal::ParamGenerator<T> Range(T start, T end) {
      return Range(start, end, 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
Back to top