Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 736 for shared (0.13 sec)

  1. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    	eventRecorder    record.EventRecorder
    
    	// endpointsLister is able to list/get endpoints and is populated by the
    	// shared informer passed to NewController.
    	endpointsLister corelisters.EndpointsLister
    	// endpointsSynced returns true if the endpoints shared informer has been
    	// synced at least once. Added as a member to the struct to allow injection
    	// for testing.
    	endpointsSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

    import org.gradle.test.fixtures.archive.JarTestFixture
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.util.GradleVersion
    import org.gradle.util.internal.GUtil
    import spock.lang.Shared
    
    import java.nio.charset.StandardCharsets
    import java.util.zip.ZipEntry
    import java.util.zip.ZipFile
    
    import static org.hamcrest.CoreMatchers.containsString
    import static org.hamcrest.CoreMatchers.equalTo
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set.go

    	// podLister is able to list/get pods from a shared informer's store
    	podLister corelisters.PodLister
    	// podListerSynced returns true if the pod shared informer has synced at least once
    	podListerSynced cache.InformerSynced
    	// setLister is able to list/get stateful sets from a shared informer's store
    	setLister appslisters.StatefulSetLister
    	// setListerSynced returns true if the stateful set shared informer has synced at least once
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/syscall/exec_linux.go

    // copied from linux/sched.h.
    const (
    	CLONE_VM             = 0x00000100 // set if VM shared between processes
    	CLONE_FS             = 0x00000200 // set if fs info shared between processes
    	CLONE_FILES          = 0x00000400 // set if open files shared between processes
    	CLONE_SIGHAND        = 0x00000800 // set if signal handlers and blocked signals shared
    	CLONE_PIDFD          = 0x00001000 // set if a pidfd should be placed in parent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. .github/CODEOWNERS

    /build-logic-settings/                      @gradle/bt-developer-productivity
    /build.gradle*                              @gradle/bt-developer-productivity
    /settings.gradle*                           @gradle/bt-developer-productivity
    gradle/shared-with-buildSrc/                @gradle/bt-developer-productivity
    platforms/build-infrastructure/             @gradle/bt-developer-productivity
    subprojects/internal-build-reports/         @gradle/bt-developer-productivity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

            os.getExecutableName("a.bat") == "a.exe"
            os.getExecutableName("a.b/c") == "a.b/c.exe"
            os.getExecutableName("a.b\\c") == "a.b\\c.exe"
        }
    
        def "windows transforms shared library names"() {
            def os = new OperatingSystem.Windows()
    
            expect:
            os.sharedLibrarySuffix == ".dll"
            os.linkLibrarySuffix == ".lib"
            os.getSharedLibraryName("a.dll") == "a.dll"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    		newImport.Name = &ast.Ident{Name: name}
    	}
    
    	// Find an import decl to add to.
    	// The goal is to find an existing import
    	// whose import path has the longest shared
    	// prefix with path.
    	var (
    		bestMatch  = -1         // length of longest shared prefix
    		lastImport = -1         // index in f.Decls of the file's final import decl
    		impDecl    *ast.GenDecl // import decl containing the best match
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/util/util.go

    		return volumeSpec, nil
    	}
    
    	// Do not return the original volume object, since it's from the shared
    	// informer it may be mutated by another consumer.
    	clonedPodVolume := podVolume.DeepCopy()
    
    	origspec := volume.NewSpecFromVolume(clonedPodVolume)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                    "assert 'child' == property('childProperty')",
                    "assert 'child' == properties.childProperty",
                    "assert 'shared' == sharedProperty",
                    "assert 'shared' == property('sharedProperty')",
                    "assert 'shared' == properties.sharedProperty",
                    "assert 'convention' == conventionProperty",
                    // Use a separate class, to isolate Project from the script
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/graph_builder.go

    			gb.graphChanges.Add(event)
    		},
    	}
    
    	shared, err := gb.sharedInformers.ForResource(resource)
    	if err != nil {
    		logger.V(4).Error(err, "unable to use a shared informer", "resource", resource, "kind", kind)
    		return nil, nil, err
    	}
    	logger.V(4).Info("using a shared informer", "resource", resource, "kind", kind)
    	// need to clone because it's from a shared cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top