Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for isMatching (0.13 sec)

  1. pkg/volume/volume_linux.go

    	if (unixPerms&filePerm != unixPerms) || (fsInfo.Mode()&os.ModeSetgid == 0) {
    		klog.V(4).InfoS("Performing recursive ownership change on rootDir because of mismatching mode", "path", rootDir)
    		return true
    	}
    	return false
    }
    
    // readDirNames reads the directory named by dirname and returns
    // a list of directory entries.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // and there is an implementation outline in the Wikipedia article at
    // https://en.wikipedia.org/wiki/Fair_queuing .
    //
    // Fair queuing for server requests differs from traditional fair
    // queuing in three ways: (1) we are dispatching application layer
    // requests to a server rather than transmitting packets on a network
    // link, (2) multiple requests can be executing at once, and (3) the
    // service time (execution duration) is not known until the execution
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

     *
     * <p>Listeners are registered once via {@link #addListener} and then may be invoked by {@linkplain
     * #enqueue enqueueing} and then {@linkplain #dispatch dispatching} events.
     *
     * <p>The API of this class is designed to make it easy to achieve the following properties
     *
     * <ul>
     *   <li>Multiple events for the same listener are never dispatched concurrently.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/amd64error.s

    	// TODO(quasilyte): improve error message (#21860).
    	V4FMADDPS (AX), [Z4-Z0], K1, Z7  // ERROR "invalid instruction"
    	V4FMADDPS (AX), [Z1-Z0], K1, Z7  // ERROR "invalid instruction"
    	// Mismatching registers in a range.
    	// TODO(quasilyte): improve error message (#21860).
    	V4FMADDPS (AX), [AX-Z3], K1, Z7  // ERROR "invalid instruction"
    	V4FMADDPS (AX), [Z0-AX], K1, Z7  // ERROR "invalid instruction"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/GroovyInteroperability.kt

     *
     * @see [GroovyBuilderScope]
     */
    inline fun <T> Any.withGroovyBuilder(builder: GroovyBuilderScope.() -> T): T =
        GroovyBuilderScope.of(this).builder()
    
    
    /**
     * Provides a dynamic dispatching DSL with Groovy semantics for better integration with
     * plugins that rely on Groovy builders such as the core `maven` plugin.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top