Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 661 for addLink (0.17 sec)

  1. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java

          return false;
        }
    
        this.mayInterruptIfRunning = mayInterruptIfRunning;
        state = State.CANCELLED;
        notifyAndClearListeners();
    
        if (delegate != null) {
          // TODO(lukes): consider adding the StackOverflowError protection from the server version
          delegate.cancel(mayInterruptIfRunning);
        }
    
        return true;
      }
    
      protected void interruptTask() {}
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 19:37:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

            pluginBuilder.file("src/main/java/org/gradle/test/TestSoftwareTypeExtension.java") << """
                package org.gradle.test;
    
                import org.gradle.declarative.dsl.model.annotations.Adding;
                import org.gradle.declarative.dsl.model.annotations.Configuring;
                import org.gradle.declarative.dsl.model.annotations.Restricted;
                import org.gradle.api.Action;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/upgrade/node.go

    			nodeRunner.Options.SkipPhases = data.cfg.Node.SkipPhases
    		}
    		return data, nil
    	})
    
    	// binds the Runner to kubeadm upgrade node command by altering
    	// command help, adding --skip-phases flag and by adding phases subcommands
    	nodeRunner.BindToCommand(cmd)
    
    	return cmd
    }
    
    // newNodeOptions returns a struct ready for being used for creating cmd kubeadm upgrade node flags.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    NOTE: Separating compile and runtime scope of modules is active by default in Gradle 5.0+.
    In Gradle 4.6+, you need to activate it by adding `enableFeaturePreview('IMPROVED_POM_SUPPORT')` in _settings.gradle_.
    
    [[sec:java_library_recognizing_dependencies]]
    == Recognizing API and implementation dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. src/net/conf.go

    // at a time when the cgo resolver did require the cgo tool.)
    //
    // Adding netdns=go to GODEBUG will prefer the go resolver.
    // Adding netdns=cgo to GODEBUG will prefer the cgo resolver.
    //
    // The Resolver struct has a PreferGo field that user code
    // may set to prefer the go resolver. It is documented as being
    // equivalent to adding netdns=go to GODEBUG.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/reset.go

    			resetRunner.Options.SkipPhases = data.resetCfg.SkipPhases
    		}
    		return data, nil
    	})
    
    	// binds the Runner to kubeadm reset command by altering
    	// command help, adding --skip-phases flag and by adding phases subcommands
    	resetRunner.BindToCommand(cmd)
    
    	return cmd
    }
    
    // ResetCfg returns the ResetConfiguration.
    func (r *resetData) ResetCfg() *kubeadmapi.ResetConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/MoreExecutors.java

    public final class MoreExecutors {
      private MoreExecutors() {}
    
      /**
       * Converts the given ThreadPoolExecutor into an ExecutorService that exits when the application
       * is complete. It does so by using daemon threads and adding a shutdown hook to wait for their
       * completion.
       *
       * <p>This is mainly for fixed thread pools. See {@link Executors#newFixedThreadPool(int)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    //
    //	-compile=<rewrite>
    //
    // This flag is equivalent to adding an environment variable
    // “GOCOMPILEDEBUG=<rewrite>hash=PATTERN”,
    // which, as discussed in more detail in the example below,
    // allows bisect to identify the specific source locations where the
    // compiler rewrite causes the target to fail.
    //
    //	-godebug=<name>=<value>
    //
    // This flag is equivalent to adding an environment variable
    // “GODEBUG=<name>=<value>#PATTERN”,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/scope.go

    }
    
    func (s *Scope) insert(name string, obj Object) {
    	if s.elems == nil {
    		s.elems = make(map[string]Object)
    	}
    	s.elems[name] = obj
    }
    
    // Squash merges s with its parent scope p by adding all
    // objects of s to p, adding all children of s to the
    // children of p, and removing s from p's children.
    // The function f is called for each object obj in s which
    // has an object alt in p. s should be discarded after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/go/types/scope.go

    }
    
    func (s *Scope) insert(name string, obj Object) {
    	if s.elems == nil {
    		s.elems = make(map[string]Object)
    	}
    	s.elems[name] = obj
    }
    
    // Squash merges s with its parent scope p by adding all
    // objects of s to p, adding all children of s to the
    // children of p, and removing s from p's children.
    // The function f is called for each object obj in s which
    // has an object alt in p. s should be discarded after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top