Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 76 for combinations (0.33 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

            java.lang.RuntimeException: oops
                at org.ClassName1.methodName1(FileName1.java:11)
                at org.ClassName2.methodName2(FileName2.java:22)
    """
        }
    
        def "supports any combination of stack trace filters"() {
            testLogging.getShowStackTraces() >> true
            testLogging.getStackTraceFilters() >> EnumSet.of(TestStackTraceFilter.TRUNCATE, TestStackTraceFilter.GROOVY)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure.sh

            # see cluster/gce/windows/k8s-node-setup.psm1 for windows
            # https://github.com/kubernetes/node-problem-detector/releases/
            *)
              echo "Unrecognized version and platform/arch combination:"
              echo "$DEFAULT_NPD_VERSION $HOST_PLATFORM/$HOST_ARCH"
              echo "Set NODE_PROBLEM_DETECTOR_VERSION and NODE_PROBLEM_DETECTOR_TAR_HASH to overwrite"
              exit 1
              ;;
          esac
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

          where such license applies only to those patent claims licensable
          by such Contributor that are necessarily infringed by their
          Contribution(s) alone or by combination of their Contribution(s)
          with the Work to which such Contribution(s) was submitted. If You
          institute patent litigation against any entity (including a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. api/maven-api-metadata/src/main/mdo/metadata.mdo

              <version>1.1.0+</version>
              <description>Information for each sub-artifact available in this artifact snapshot. This is only the most recent SNAPSHOT for each unique extension/classifier combination.</description>
              <association>
                <type>SnapshotVersion</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
          </fields>
          <codeSegments>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

        private enum class DeclaredMemberScopeKind {
            NON_STATIC,
    
            STATIC,
    
            /**
             * A scope containing both non-static and static members. A smart combined scope (as opposed to a naive combination of [KaScope]s
             * with [getCompositeScope]) avoids duplicate inner classes, as they are contained in non-static and static scopes.
             *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

      let summary = "Restore variable tensors";
      let description = [{
        This is the MLRT version of tf.IfrtRestoreVariableOp.
    
        This Op is similar to a combination of RestoreV2 and AssignVariable Op, but
        this Op's execution is asynchronous.
    
        This Op is specific to MLRT runtime and is not a stable interface for
        serialization.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. src/runtime/signal_unix.go

    	}
    	c := &sigctxt{info, ctx}
    	gp := sigFetchG(c)
    	setg(gp)
    	if gp == nil || (gp.m != nil && gp.m.isExtraInC) {
    		if sig == _SIGPROF {
    			// Some platforms (Linux) have per-thread timers, which we use in
    			// combination with the process-wide timer. Avoid double-counting.
    			if validSIGPROF(nil, c) {
    				sigprofNonGoPC(c.sigpc())
    			}
    			return
    		}
    		if sig == sigPreempt && preemptMSupported && debug.asyncpreemptoff == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1/types.go

    	// encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.
    	Incomplete bool `json:"incomplete" protobuf:"bytes,3,rep,name=incomplete"`
    	// 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.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/stdlib_test.go

    	start := time.Now()
    
    	// Though we read files while parsing, type-checking is otherwise CPU bound.
    	//
    	// This doesn't achieve great CPU utilization as many packages may block
    	// waiting for a common import, but in combination with the non-deterministic
    	// map iteration below this should provide decent coverage of concurrent
    	// type-checking (see golang/go#47729).
    	cpulimit := make(chan struct{}, runtime.GOMAXPROCS(0))
    	var wg sync.WaitGroup
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/network.go

    		out := append(make([]model.NetworkGateway, 0, len(gws)), gws...)
    		return out
    	}
    
    	return nil
    }
    
    // handleGateway resource adds a NetworkGateway for each combination of address and auto-passthrough listener
    // discovering duplicates from the generated Service is not a huge concern as we de-duplicate in NetworkGateways
    // which returns a set, although it's not totally efficient.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top