Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for combinations (0.21 sec)

  1. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

            "properties": {
              "evaluationError": {
                "description": "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    		// might be able to change the goroutine count without interacting with
    		// the scheduler. For code like that, the race windows are small and the
    		// combination of features is uncommon, so it's hard to be (and remain)
    		// sure we've caught them all.
    	}
    
    	semrelease(&goroutineProfile.sema)
    	return n, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    	// certificate. In this mode, TLS is susceptible to machine-in-the-middle
    	// attacks unless custom verification is used. This should be used only for
    	// testing or in combination with VerifyConnection or VerifyPeerCertificate.
    	InsecureSkipVerify bool
    
    	// CipherSuites is a list of enabled TLS 1.0–1.2 cipher suites. The order of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    				timeout:   1 * time.Minute,
    				runOnHost: true,
    			})
    	}
    
    	// Only run the API check on fast development platforms.
    	// Every platform checks the API on every GOOS/GOARCH/CGO_ENABLED combination anyway,
    	// so we really only need to run this check once anywhere to get adequate coverage.
    	// To help developers avoid trybot-only failures, we try to run on typical developer machines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/Futures.java

        return new FutureCombiner<>(true, ImmutableList.copyOf(futures));
      }
    
      /**
       * A helper to create a new {@code ListenableFuture} whose result is generated from a combination
       * of input futures.
       *
       * <p>See {@link #whenAllComplete} and {@link #whenAllSucceed} for how to instantiate this class.
       *
       * <p>Example:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

        JUnit 5 = JUnit Platform + JUnit Jupiter + JUnit Vintage
    
    The JUnit Platform serves as a foundation for launching testing frameworks on the JVM. JUnit Jupiter is the combination of the new http://junit.org/junit5/docs/current/user-guide/#writing-tests[programming model]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. src/time/time.go

    			sec += int64(l.cacheZone.offset)
    		} else {
    			_, offset, _, _, _ := l.lookup(sec)
    			sec += int64(offset)
    		}
    	}
    	return uint64(sec + (unixToInternal + internalToAbsolute))
    }
    
    // locabs is a combination of the Zone and abs methods,
    // extracting both return values from a single zone lookup.
    func (t Time) locabs() (name string, offset int, abs uint64) {
    	l := t.loc
    	if l == nil || l == &localLoc {
    		l = l.get()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/mips/asm0.go

    		if int(op.a2) == a2 && c1[op.a1] && c3[op.a3] && (op.family == 0 || c.ctxt.Arch.Family == op.family) {
    			p.Optab = uint16(cap(optab) - cap(ops) + i + 1)
    			return op
    		}
    	}
    
    	c.ctxt.Diag("illegal combination %v %v %v %v", p.As, DRconv(a1), DRconv(a2), DRconv(a3))
    	prasm(p)
    	// Turn illegal instruction into an UNDEF, avoid crashing in asmout.
    	return &Optab{obj.AUNDEF, C_NONE, C_NONE, C_NONE, 49, 4, 0, 0, 0}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ppc64/asm.go

    		} else {
    			// Generate a PIC stub. This is ugly as the stub must determine its location using
    			// POWER8 or older instruction. These stubs are likely the combination of using
    			// GOPPC64 < 8 and linking external objects built with CFLAGS="... -mcpu=power10 ..."
    			stub.AddUint32(ctxt.Arch, OP_MFLR_R0)  // mflr r0
    			stub.AddUint32(ctxt.Arch, OP_BCL_NIA)  // bcl 20,31,1f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    	// of the stack, but the single pass over the inner part ensures that's
    	// printed immediately and not revisited. It keeps minimal state on the
    	// stack. And through a combination of skip counts and limits, we can do all
    	// of the steps we need with a single traceback printer implementation.
    	//
    	// We could be more lax about exactly how many frames we print, for example
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top