Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 78 for applyTo (0.26 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

                is then described by additional elements.
                Projects should only list the license(s) that applies to the project
                and not the licenses that apply to dependencies.
                If multiple licenses are listed, it is assumed that the user can select
                any of them, not that they must accept all.
                ]]>
              </description>
              <association>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    		// Objects matching prefixes should not leave delete markers,
    		// dramatically reduces namespace pollution while keeping the
    		// benefits of replication, make sure to apply version suspension
    		// only at bucket level instead.
    		VersionSuspended: globalBucketVersioningSys.Suspended(bucket),
    	})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// BT[SRC]Qconstmodify
    		//
    		//  S: set bit
    		//  R: reset (clear) bit
    		//  C: complement bit
    		//
    		// Apply operation to bit ValAndOff(AuxInt).Val() in the 64 bits at
    		// memory address arg0+ValAndOff(AuxInt).Off()+aux
    		// Bit index must be in range (31-63).
    		// (We use OR/AND/XOR for thinner targets and lower bit indexes.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  4. pkg/config/validation/validation.go

    				errs = AppendWarningf(errs,
    					"sidecar: HTTP connection pool settings are configured for port %d (%q) but its protocol is not HTTP (%s); only TCP settings will apply",
    					i.Port.Number, i.Port.Name, i.Port.Protocol)
    			}
    		}
    
    		// Validate top-level connection pool setting
    		errs = AppendValidation(errs, validateConnectionPool(rule.InboundConnectionPool))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CallTest.kt

      fun canceledBeforeResponseReadSignalsOnFailure_HTTP_2() {
        enableProtocol(Protocol.HTTP_2)
        canceledBeforeResponseReadSignalsOnFailure()
      }
    
      /**
       * There's a race condition where the cancel may apply after the stream has already been
       * processed.
       */
      @Test
      fun canceledAfterResponseIsDeliveredBreaksStreamButSignalsOnce() {
        server.enqueue(MockResponse(body = "A"))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  6. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/ConnectionSpec;-><clinit>()V
    HSPLokhttp3/ConnectionSpec;-><init>(ZZ[Ljava/lang/String;[Ljava/lang/String;)V
    HSPLokhttp3/ConnectionSpec;->apply$okhttp(Ljavax/net/ssl/SSLSocket;Z)V
    HSPLokhttp3/ConnectionSpec;->cipherSuites()Ljava/util/List;
    HSPLokhttp3/ConnectionSpec;->equals(Ljava/lang/Object;)Z
    HSPLokhttp3/ConnectionSpec;->hashCode()I
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    		t.Errorf("using %s expected error should contain:\n%s\nin test case: %s\nbut got:\n%s\n", getSchemaType(schema), expectedError, description, err)
    	}
    	if err != nil {
    		t.Errorf("using %s error: %s\nin test case: %s\ncannot apply patch:\n%s\nto original:\n%s\n",
    			getSchemaType(schema), err, description, jsonToYAMLOrError(patch), jsonToYAMLOrError(original))
    		return
    	}
    
    	if !reflect.DeepEqual(result, expected) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    }
    
    // Length returns the column type length for variable length column types such
    // as text and binary field types. If the type length is unbounded the value will
    // be [math.MaxInt64] (any database limits will still apply).
    // If the column type is not variable length, such as an int, or if not supported
    // by the driver ok is false.
    func (ci *ColumnType) Length() (length int64, ok bool) {
    	return ci.length, ci.hasLength
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    // 1. Decrement nmspinning.
    // 2. #StoreLoad-style memory barrier.
    // 3. Check all per-P work queues and GC for new work.
    //
    // Note that all this complexity does not apply to global run queue as we are
    // not sloppy about thread unparking when submitting to global queue. Also see
    // comments for nmspinning manipulation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	return precPrimary
    }
    
    // Template is a template with arguments.
    type Template struct {
    	Name AST
    	Args []AST
    }
    
    func (t *Template) print(ps *printState) {
    	// Inner types apply to the template as a whole, they don't
    	// cross over into the template.
    	holdInner := ps.inner
    	defer func() { ps.inner = holdInner }()
    
    	ps.inner = nil
    	ps.print(t.Name)
    
    	if !ps.tparams {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top