Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 328 for unusual (0.14 sec)

  1. pkg/kube/inject/inject_test.go

    			want: "docker.io/istio/proxyv2:1.12-distroless",
    		},
    		{
    			desc: "unusual tag should work",
    			v:    val("private-repo/istio", "1.12-this-is-unusual-tag"),
    			want: "private-repo/istio/proxyv2:1.12-this-is-unusual-tag",
    		},
    		{
    			desc: "unusual tag should work, default override",
    			v:    val("private-repo/istio", "1.12-this-is-unusual-tag-distroless"),
    			pc:   pc("default"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. buildscripts/checkdeps.sh

    		echo "Go runtime version '${installed_go_version}' is unsupported. Minimum supported version: ${GO_VERSION} to compile."
    		exit 1
    	fi
    }
    
    assert_check_deps() {
    	# support unusual Git versions such as: 2.7.4 (Apple Git-66)
    	installed_git_version=$(git version | perl -ne '$_ =~ m/git version (.*?)( |$)/; print "$1\n";')
    	if ! check_minimum_version "${GIT_VERSION}" "${installed_git_version}"; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    # Test case to verify that when we have a package that uses CGO in
    # combination with selected "unusual" flags (involving plugins, LTO)
    # that we force external linking.  See related
    # issues 58619,  58620, and 58848.
    
    [compiler:gccgo] skip # only external linking for gccgo
    
    [!cgo] skip 'test verifies behavior that depends on CGO_CFLAGS'
    [mustlinkext] skip 'test expects internal linking for non-cgo programs'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/DirectExecutorService.java

      public void shutdown() {
        synchronized (lock) {
          shutdown = true;
          if (runningTasks == 0) {
            lock.notifyAll();
          }
        }
      }
    
      // See newDirectExecutorService javadoc for unusual behavior of this method.
      @Override
      public List<Runnable> shutdownNow() {
        shutdown();
        return Collections.emptyList();
      }
    
      @Override
      public boolean isTerminated() {
        synchronized (lock) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/syscall/forkpipe2.go

    		// The simple way to do this is for us to acquire a
    		// read lock. That will block us until all current
    		// conceptual write locks are released.
    		//
    		// Note that this case is unusual on modern systems
    		// with O_CLOEXEC and SOCK_CLOEXEC. On those systems
    		// the standard library should never take a read
    		// lock on ForkLock.
    
    		forkingLock.Unlock()
    
    		ForkLock.RLock()
    		ForkLock.RUnlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 10 19:19:59 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/DirectExecutorService.java

      public void shutdown() {
        synchronized (lock) {
          shutdown = true;
          if (runningTasks == 0) {
            lock.notifyAll();
          }
        }
      }
    
      // See newDirectExecutorService javadoc for unusual behavior of this method.
      @Override
      public List<Runnable> shutdownNow() {
        shutdown();
        return Collections.emptyList();
      }
    
      @Override
      public boolean isTerminated() {
        synchronized (lock) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                abstract class Unusual {
                    Project p
                    @Inject Unusual(Project p) { this.p = p }
                    Object getBar() {
                        $lookup
                    }
                }
    
                // Convention plugin members are exposed as members of the project
                convention.plugins['unusual'] = objects.newInstance(Unusual)
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                    addToClasspath = false;
                }
                /*
                 * If the test output directory provides some modules of its own, add them.
                 * Except for this unusual case, tests should never be added to the module-path.
                 */
                for (Map.Entry<Path, String> entry : testModules.getModuleNames().entrySet()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/StandardSystemProperty.java

       *       available even under older version.
       *   <li>Any property may be cleared through APIs like {@link System#clearProperty}.
       *   <li>Unusual environments like GWT may have their own special handling of system properties.
       * </ul>
       *
       * <p>Note that {@code StandardSystemProperty} does not provide constants for more recently added
       * properties, including:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/StandardSystemProperty.java

       *       available even under older version.
       *   <li>Any property may be cleared through APIs like {@link System#clearProperty}.
       *   <li>Unusual environments like GWT may have their own special handling of system properties.
       * </ul>
       *
       * <p>Note that {@code StandardSystemProperty} does not provide constants for more recently added
       * properties, including:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top