Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 257 for getZip (0.26 sec)

  1. pilot/pkg/serviceregistry/util/workloadinstances/index.go

    	if previous != nil {
    		i.ipToKeys.Delete(previous.Endpoint.Address, key)
    	}
    	i.ipToKeys.Delete(wi.Endpoint.Address, key)
    	delete(i.keyToInstance, key)
    	return previous
    }
    
    // GetByIP implements Index.
    func (i *index) GetByIP(ip string) []*model.WorkloadInstance {
    	i.mu.RLock()
    	defer i.mu.RUnlock()
    
    	keys := i.ipToKeys[ip]
    	if len(keys) == 0 {
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 05:45:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/os/proc.go

    }
    
    func runtime_args() []string // in package runtime
    
    // Getuid returns the numeric user id of the caller.
    //
    // On Windows, it returns -1.
    func Getuid() int { return syscall.Getuid() }
    
    // Geteuid returns the numeric effective user id of the caller.
    //
    // On Windows, it returns -1.
    func Geteuid() int { return syscall.Geteuid() }
    
    // Getgid returns the numeric group id of the caller.
    //
    // On Windows, it returns -1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/testers/MapSerializationTester.java

      @CollectionFeature.Require(SERIALIZABLE)
      public void testReserializeMap() {
        Map<K, V> deserialized = SerializableTester.reserialize(getMap());
        new EqualsTester().addEqualityGroup(getMap(), deserialized).testEquals();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 02 20:22:04 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ManagedPropertyJavaInterOpIntegrationTest.groovy

                    @Internal
                    public abstract SetProperty<Integer> getSet();
    
                    @Internal
                    public abstract MapProperty<Integer, Boolean> getMap();
    
                    @TaskAction
                    public void run() {
                        System.out.println("flag = " + getFlag().get());
                        System.out.println("message = " + getMessage().get());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestResources.java

            testWorkDirProvider = testDirectoryProvider;
            this.extraResources = Arrays.asList(extraResources);
            resources = new Resources(testDirectoryProvider);
        }
    
        public TestFile getDir() {
            return testWorkDirProvider.getTestDirectory();
        }
    
        @Override
        public Statement apply(Statement base, final FrameworkMethod method, Object target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/cache/internal/VersionSpecificCacheCleanupAction.java

                    progressMonitor.incrementDeleted();
                    try {
                        deleteCacheDir(cacheDir.getDir());
                    } catch (Exception e) {
                        LOGGER.error("Failed to process/clean up version-specific cache directory: {}", cacheDir.getDir(), e);
                    }
                } else {
                    progressMonitor.incrementSkipped();
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. src/runtime/security_aix.go

    package runtime
    
    // secureMode is only ever mutated in schedinit, so we don't need to worry about
    // synchronization primitives.
    var secureMode bool
    
    func initSecureMode() {
    	secureMode = !(getuid() == geteuid() && getgid() == getegid())
    }
    
    func isSecureMode() bool {
    	return secureMode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 449 bytes
    - Viewed (0)
  8. security/pkg/util/jwtutil.go

    // limitations under the License.
    
    package util
    
    import (
    	"bytes"
    	"encoding/base64"
    	"encoding/json"
    	"fmt"
    	"strings"
    	"time"
    )
    
    // GetExp returns token expiration time, or error on failures.
    func GetExp(token string) (time.Time, error) {
    	claims, err := parseJwtClaims(token)
    	if err != nil {
    		return time.Time{}, err
    	}
    
    	if claims["exp"] == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/Sample.java

                        TestFile srcDir = context.getSamplesDir().file(sampleName);
                        logger.debug("Copying sample '{}' to test directory.", sampleName);
                        srcDir.copyTo(getDir());
                    } else {
                        logger.debug("No sample specified for this test, skipping.");
                    }
                    base.evaluate();
                }
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/ConstantTestKitDirProvider.java

        private final File testKitDir;
    
        public ConstantTestKitDirProvider(File testKitDir) {
            this.testKitDir = testKitDir;
        }
    
        @Override
        public File getDir() {
            return testKitDir;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 963 bytes
    - Viewed (0)
Back to top