Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,105 for p_hold (0.12 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationQueue.java

     * <p>
     * A queue instance is threadsafe. Build operations can submit further operations to the queue but must not block waiting for them to complete.
     *
     * @param <T> type of build operations to hold
     */
    public interface BuildOperationQueue<T extends BuildOperation> {
    
        /**
         * Adds an operation to be executed, potentially executing it instantly.
         *
         * @param operation operation to execute
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/util/intstr/generated.proto

    syntax = "proto2";
    
    package k8s.io.apimachinery.pkg.util.intstr;
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/apimachinery/pkg/util/intstr";
    
    // IntOrString is a type that can hold an int32 or a string.  When used in
    // JSON or YAML marshalling and unmarshalling, it produces or consumes the
    // inner type.  This allows you to have, for example, a JSON field that can
    // accept a name or number.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/GroovySecurityManagerIssuesIntegrationTest.groovy

                                System.out.println("Complete" + i);
                            }
                        }
                }
    
                class SecurityTestSupport extends GroovyTestCase {
                    //Must hold a reference to reproduce the bug
                    private SecurityManager securityManager;
    
                    //This usually need to be called more than once to reproduce the bug
                    protected void setUp() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/config_test.go

    	apiserverapiv1 "k8s.io/apiserver/pkg/apis/apiserver/v1"
    	apiserverapiv1alpha1 "k8s.io/apiserver/pkg/apis/apiserver/v1alpha1"
    )
    
    func TestReadAdmissionConfiguration(t *testing.T) {
    	// create a place holder file to hold per test config
    	configFile, err := os.CreateTemp("", "admission-plugin-config")
    	if err != nil {
    		t.Fatalf("unexpected err: %v", err)
    	}
    	defer os.Remove(configFile.Name())
    	if err = configFile.Close(); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/isolation/IsolatableFactory.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    /**
     * A factory for creating {@link Isolatable} instances from an object graph. These hold a snapshot of the object graph's state and can be used to:
     *
     * <ul>
     * <li>Create isolated instances from that state to pass to user code, see {@link Isolatable} for more details.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ArrayListMultimap.java

          ArrayListMultimap<K, V> create() {
        return new ArrayListMultimap<>();
      }
    
      /**
       * Constructs an empty {@code ArrayListMultimap} with enough capacity to hold the specified
       * numbers of keys and values without resizing.
       *
       * <p>This method will soon be deprecated in favor of {@code
       * MultimapBuilder.hashKeys(expectedKeys).arrayListValues(expectedValuesPerKey).build()}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard.jsp

        <title><la:message key="labels.admin_brand_title"/> | <la:message
                key="labels.wizard_title_configuration"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
        <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ArrayListMultimap.java

          ArrayListMultimap<K, V> create() {
        return new ArrayListMultimap<>();
      }
    
      /**
       * Constructs an empty {@code ArrayListMultimap} with enough capacity to hold the specified
       * numbers of keys and values without resizing.
       *
       * <p>This method will soon be deprecated in favor of {@code
       * MultimapBuilder.hashKeys(expectedKeys).arrayListValues(expectedValuesPerKey).build()}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. src/encoding/binary/varint.go

    //
    // Design note:
    // At most 10 bytes are needed for 64-bit values. The encoding could
    // be more dense: a full 64-bit value needs an extra byte just to hold bit 63.
    // Instead, the msb of the previous byte could be used to hold bit 63 since we
    // know there can't be more than 64 bits. This is a trivial improvement and
    // would reduce the maximum encoding length to 9 bytes. However, it breaks the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/variable_info.cc

      definition_stack_trace_ = other.definition_stack_trace_;
    
      other.index_ = -1;
      other.var_ = nullptr;
    
      return *this;
    }
    
    VariableInfo::~VariableInfo() {
      // Release the variable's lock if we hold it. Ensures that the lock is
      // released even on error.  It does not matter in what order we release the
      // locks.
      if (var()) {
        if (lock_held()) {
          var()->mu()->unlock();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top