Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,040 for populator (0.17 sec)

  1. pkg/kube/controllers/example_test.go

    	// Instead, just check `c.queue`.
    	return c.queue.HasSynced()
    }
    
    // nolint: gocritic
    func Example() {
    	// Setup our fake client. This can be pre-populated with items.
    	c := kube.NewFakeClient(&corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "test1"},
    		Status:     corev1.PodStatus{PodIP: "127.0.0.1"},
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. .gitignore

    docs/debugging/hash-set/hash-set
    docs/debugging/healing-bin/healing-bin
    docs/debugging/inspect/inspect
    docs/debugging/pprofgoparser/pprofgoparser
    docs/debugging/reorder-disks/reorder-disks
    docs/debugging/populate-hard-links/populate-hardlinks
    docs/debugging/xattr/xattr
    hash-set
    healing-bin
    inspect
    pprofgoparser
    reorder-disks
    s3-check-md5
    s3-verify
    xattr
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 802 bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskExecutionGraphListener.java

     * use this interface in your build file to perform some action based on the contents of the graph, before any tasks are
     * actually executed.</p>
     */
    @EventScope(Scope.Build.class)
    public interface TaskExecutionGraphListener {
        /**
         * <p>This method is called when the {@link TaskExecutionGraph} has been populated, and before any tasks are
         * executed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/ManagedNamedTest.groovy

    import org.gradle.model.internal.inspect.ReadonlyImmutableManagedPropertyException
    
    class ManagedNamedTest extends ProjectRegistrySpec {
    
        def "named struct has name property populated"() {
            when:
            registry.registerWithInitializer("foo", NamedThingInterface, nodeInitializerRegistry)
    
            then:
            registry.realize("foo", NamedThingInterface).name == "foo"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/Lmhosts.java

                    long lm;
    
                    if(( lm = f.lastModified() ) > lastModified ) {
                        lastModified = lm;
                        TAB.clear();
                        alt = 0;
                        populate( new FileReader( f ));
                    }
                    result = (NbtAddress)TAB.get( name );
                }
            } catch( FileNotFoundException fnfe ) {
                if( log.level > 1 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                 * array. Incedentally when these andx smbs are created they are not
                 * necessarily populated with header data because they're not writing
                 * the header, only their body. But for whatever reason one might wish
                 * to populate fields if the writeXxx operation needs this header data
                 * for whatever reason. I copy over the uid here so it appears correct
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Nov 28 10:56:27 UTC 2022
    - 14.3K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/cache/desired_state_of_world_test.go

    	}
    
    	volumesToAttach := dsw.GetVolumesToAttach()
    	if len(volumesToAttach) != 0 {
    		t.Fatalf("len(volumesToAttach) Expected: <0> Actual: <%v>", len(volumesToAttach))
    	}
    }
    
    // Populates data struct with a single node no volume.
    // Calls AddPod() with the same node and new pod/volume.
    // Verifies node/volume exists, and 1 volumes to attach.
    func Test_AddPod_Positive_NewPodNodeExistsVolumeDoesntExist(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/build/BuildTestFixture.groovy

        BuildTestFixture withBuildInRootDir() {
            buildInRootDir = true
            this
        }
    
        BuildTestFixture withBuildInSubDir() {
            buildInRootDir = false
            this
        }
    
        def populate(String projectName, @DelegatesTo(value = BuildTestFile, strategy = Closure.DELEGATE_FIRST) Closure cl) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/archive/tar/common.go

    		h.Mode |= c_ISGID
    	}
    	if fm&fs.ModeSticky != 0 {
    		h.Mode |= c_ISVTX
    	}
    	// If possible, populate additional fields from OS-specific
    	// FileInfo fields.
    	if sys, ok := fi.Sys().(*Header); ok {
    		// This FileInfo came from a Header (not the OS). Use the
    		// original Header to populate all remaining fields.
    		h.Uid = sys.Uid
    		h.Gid = sys.Gid
    		h.Uname = sys.Uname
    		h.Gname = sys.Gname
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. pkg/auth/nodeidentifier/default.go

    )
    
    // NewDefaultNodeIdentifier returns a default NodeIdentifier implementation,
    // which returns isNode=true if the user groups contain the system:nodes group
    // and the user name matches the format system:node:<nodeName>, and populates
    // nodeName if isNode is true
    func NewDefaultNodeIdentifier() NodeIdentifier {
    	return defaultNodeIdentifier{}
    }
    
    // defaultNodeIdentifier implements NodeIdentifier
    type defaultNodeIdentifier struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 15 09:32:31 UTC 2017
    - 1.9K bytes
    - Viewed (0)
Back to top