Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,174 for tuning (0.26 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    Let's start by turning on the local Build Cache for your app.
    
    == Step 2. Enabling the Local Build Cache
    Run the clean task and then the build task using the `./gradlew :app:clean :app:build` command:
    [source,text]
    ----
    $ ./gradlew :app:clean :app:build
    > Task :app:clean
    > Task :app:compileJava
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationState.java

        public BuildOperationDescriptor getDescription() {
            return description;
        }
    
        public boolean isRunning() {
            return running.get();
        }
    
        public void setRunning(boolean running) {
            this.running.set(running);
        }
    
        public long getStartTime() {
            return startTime;
        }
    
        @Override
        public OperationIdentifier getId() {
            return description.getId();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. pkg/volume/util/subpath/subpath_windows_test.go

    		if test.expectError {
    			assert.NotNil(t, err, "Expect error during LockAndCheckSubPath(%s, %s)", test.volumePath, test.subPath)
    			continue
    		}
    		assert.Nil(t, err, "Expect no error during LockAndCheckSubPath(%s, %s)", test.volumePath, test.subPath)
    	}
    
    	// remove dir will happen after closing all file handles
    	assert.Nil(t, os.RemoveAll(testingVolumePath), "Expect no error during remove dir %s", testingVolumePath)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 13.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_test_race.txt

    # Test with coverage instrumentation enabled (-fuzz) and race instrumentation
    # but without actually fuzzing the target (by using a non-matching pattern)
    go test -fuzz=xxx -race -v
    ! stderr 'race detected during execution of test'
    
    # Test with just race instrumentation enabled
    go test -race -v
    ! stderr 'race detected during execution of test'
    
    # Test with coverage and race instrumentation enabled, and a matching fuzz
    # pattern
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 966 bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_executable_persistor.h

      // Saves the cache entry in the file directory supplied during the
      // construction of this class. Overwrites existing entries.
      Status SaveSerializedEntry(const XlaSerializedCacheEntry& entry) const;
    
      // Tries to read a cache entry given a `key` by searching the file directory
      // supplied during the construction of this class. Returns std::nullopt if no
      // cache entry is found.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/kubelet/kubelet.go

    	if err != nil {
    		fmt.Println("[kubelet-start] No supported init system detected, won't make sure the kubelet is running properly.")
    		return
    	}
    
    	if !initSystem.ServiceExists(kubeadmconstants.Kubelet) {
    		fmt.Println("[kubelet-start] Couldn't detect a kubelet service, can't make sure the kubelet is running properly.")
    	}
    
    	// This runs "systemctl daemon-reload && systemctl restart kubelet"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 15 16:01:35 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecutionAccessListener.java

    @EventScope(Scope.Build.class)
    public interface TaskExecutionAccessListener {
    
        /**
         * Called when accessing the project during task execution.
         */
        void onProjectAccess(String invocationDescription, TaskInternal task, @Nullable TaskInternal runningTask);
    
        /**
         * Called when accessing task dependencies during task execution.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/bestPractices/logicDuringConfiguration-dont/tests/logicDuringConfigurationPhase.out

    * What went wrong:
    A problem occurred configuring root project 'logic-during-configuration-dont'.
    > Could not create task ':printArtifactNames'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 215 bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/types.go

    	CertificateRenewal *bool
    
    	// DryRun tells if the dry run mode is enabled, don't apply any change if it is and just output what would be done.
    	DryRun *bool
    
    	// EtcdUpgrade instructs kubeadm to execute etcd upgrade during upgrades.
    	EtcdUpgrade *bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/toolchain/select.go

    	// toolchain version during the toolchain switch by the parent
    	// process and cleared in the child process. When set, that indicates
    	// to the child to confirm that it provides the expected toolchain version.
    	targetEnv = "GOTOOLCHAIN_INTERNAL_SWITCH_VERSION"
    
    	// countEnv is a special environment variable
    	// that is incremented during each toolchain switch, to detect loops.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top