Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 968 for Remotes (0.11 sec)

  1. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/DefaultWatchableFileSystemDetectorTest.groovy

            "remote"      | fs("/dev/remote", "/mnt/unsupported", "ext4", true)
        }
    
        private List<FileSystemInfo> detect() {
            detector.detectUnsupportedFileSystems()
                .collect(Collectors.toList())
        }
    
        private static FileSystemInfo fs(String deviceName, String mountPoint, String type, boolean remote = false) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. pkg/apis/abac/v0/conversion_test.go

    		},
    
    		// specifying a namespace removes the * match on non-resource path
    		"namespace": {
    			old:      &v0.Policy{Namespace: "myns"},
    			expected: &abac.Policy{Spec: abac.PolicySpec{Group: user.AllAuthenticated, Readonly: false, NonResourcePath: "", Namespace: "myns", Resource: "*", APIGroup: "*"}},
    		},
    
    		// specifying a resource removes the * match on non-resource path
    		"resource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/LoggingOutput.java

         *
         * @param listener The listener to add.
         */
        void addStandardOutputListener(StandardOutputListener listener);
    
        /**
         * Removes a listener from standard output.
         *
         * @param listener The listener to remove.
         */
        void removeStandardOutputListener(StandardOutputListener listener);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. releasenotes/notes/30723.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - 30723
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 23 21:40:50 UTC 2021
    - 231 bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/version/PluginVersionRequest.java

         */
        PluginVersionRequest setPom(Model pom);
    
        /**
         * Gets the remote repositories to use.
         *
         * @return The remote repositories to use, never {@code null}.
         */
        List<RemoteRepository> getRepositories();
    
        /**
         * Sets the remote repositories to use. Note: When creating a request from a project, be sure to use the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api_remote_test.cc

    TEST(CAPI, RemoteExecuteSilentCopies) {
      TestRemoteExecuteSilentCopiesOp(/*async=*/false, /*remote=*/true);
    }
    TEST(CAPI, RemoteExecuteSilentCopiesAsync) {
      TestRemoteExecuteSilentCopiesOp(/*async=*/true, /*remote=*/true);
    }
    TEST(CAPI, RemoteExecuteSilentCopiesLocal) {
      TestRemoteExecuteSilentCopiesOp(/*async=*/false, /*remote=*/false);
    }
    TEST(CAPI, RemoteExecuteSilentCopiesLocalAsync) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 12 00:14:22 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  7. src/internal/trace/parser.go

    	EvGoSysExit         = 29 // syscall exit [timestamp, goroutine id, seq, real timestamp]
    	EvGoSysBlock        = 30 // syscall blocks [timestamp]
    	EvGoWaiting         = 31 // denotes that goroutine is blocked when tracing starts [timestamp, goroutine id]
    	EvGoInSyscall       = 32 // denotes that goroutine is in syscall when tracing starts [timestamp, goroutine id]
    	EvHeapAlloc         = 33 // gcController.heapLive change [timestamp, heap live bytes]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. test/typeparam/setsimp.dir/a.go

    func (s Set[Elem]) AddSet(s2 Set[Elem]) {
    	for v := range s2.m {
    		s.m[v] = struct{}{}
    	}
    }
    
    // SubSet removes all elements in s2 from s.
    // Values in s2 that are not in s are ignored.
    func (s Set[Elem]) SubSet(s2 Set[Elem]) {
    	for v := range s2.m {
    		delete(s.m, v)
    	}
    }
    
    // Intersect removes all elements from s that are not present in s2.
    // Values in s2 that are not in s are ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 21:39:54 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  9. src/internal/poll/fd_mutex.go

    				old -= mutexRWait
    				runtime_Semrelease(&mu.rsema)
    			}
    			for old&mutexWMask != 0 {
    				old -= mutexWWait
    				runtime_Semrelease(&mu.wsema)
    			}
    			return true
    		}
    	}
    }
    
    // decref removes a reference from mu.
    // It reports whether there is no remaining reference.
    func (mu *fdMutex) decref() bool {
    	for {
    		old := atomic.LoadUint64(&mu.state)
    		if old&mutexRefMask == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 20 16:55:30 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/IncomingQueue.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.hub;
    
    import org.gradle.internal.remote.internal.hub.protocol.EndOfStream;
    import org.gradle.internal.remote.internal.hub.queue.MultiChannelQueue;
    
    import java.util.concurrent.locks.Lock;
    
    class IncomingQueue extends MultiChannelQueue {
        IncomingQueue(Lock lock) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top