Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 941 for spcs (0.14 sec)

  1. pkg/apis/scheduling/validation/validation_test.go

    		},
    		"incorrect system class name": {
    			ObjectMeta:    metav1.ObjectMeta{Name: spcs[0].Name, Namespace: ""},
    			Value:         0,
    			GlobalDefault: spcs[0].GlobalDefault,
    		},
    		"incorrect system class value": {
    			ObjectMeta:    metav1.ObjectMeta{Name: "system-something", Namespace: ""},
    			Value:         spcs[0].Value,
    			GlobalDefault: spcs[0].GlobalDefault,
    		},
    	}
    
    	for k, v := range errorCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:30:47 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/util.go

    }
    
    // SPCconv returns the string representation of the special operand spc.
    func SPCconv(spc int64) string {
    	for i := range spcSpace {
    		spcs := &spcSpace[i]
    		if spcs.lo <= spc && spc < spcs.hi {
    			return spcs.SPCconv(spc)
    		}
    	}
    	return fmt.Sprintf("SPC???%d", spc)
    }
    
    type opSet struct {
    	lo    As
    	names []string
    }
    
    // Not even worth sorting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/specs/Specs.java

         */
        @SafeVarargs
        @SuppressWarnings("varargs")
        public static <T> Spec<T> intersect(Spec<? super T>... specs) {
            if (specs.length == 0) {
                return satisfyAll();
            }
            if (specs.length == 1) {
                return Cast.uncheckedCast(specs[0]);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/Specs.java

         */
        public static <T> Spec<T> intersect(Collection<? extends Spec<T>> specs) {
            if (specs.size() == 0) {
                return satisfyAll();
            }
            return doIntersect(specs);
        }
    
        private static <T> Spec<T> doIntersect(Collection<? extends Spec<T>> specs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Specs.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal;
    
    import org.gradle.api.specs.Spec;
    
    public class Specs {
        public static <T> Spec<T> isInstance(final Class<?> type) {
            return new Spec<T>() {
                @Override
                public boolean isSatisfiedBy(T element) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 956 bytes
    - Viewed (0)
  6. test/inline_callers.go

    package main
    
    import (
    	"fmt"
    	"runtime"
    )
    
    var skip int
    var npcs int
    var pcs = make([]uintptr, 32)
    
    func f() {
    	g()
    }
    
    func g() {
    	h()
    }
    
    func h() {
    	npcs = runtime.Callers(skip, pcs)
    }
    
    func testCallers(skp int) (frames []string) {
    	skip = skp
    	f()
    	for i := 0; i < npcs; i++ {
    		fn := runtime.FuncForPC(pcs[i] - 1)
    		frames = append(frames, fn.Name())
    		if fn.Name() == "main.main" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 08 21:54:04 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/end2end/disallow_stateful_partitioned_call.pbtxt

          s: ""
        }
      }
      attr {
        key: "f"
        value {
          func {
            name: "function"
          }
        }
      }
    }
    node {
      name: "add"
      op: "Add"
      input: "spc1"
      input: "spc2"
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
    }
    library {
      function {
        signature {
          name: "function"
          input_arg {
            name: "inputs"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 24 20:05:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. src/internal/trace/base.go

    	switch v {
    	case version.Go122:
    		return e.args[len(go122.Specs()[e.typ].Args)-1:]
    	}
    	panic(fmt.Sprintf("unsupported version: go 1.%d", v))
    }
    
    // evTable contains the per-generation data necessary to
    // interpret an individual event.
    type evTable struct {
    	freq    frequency
    	strings dataTable[stringID, string]
    	stacks  dataTable[stackID, stack]
    	pcs     map[uint64]frame
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/BUILD

        srcs = ["import_restore_v1.py"],
        deps = [
            ":common_v1",
            "//tensorflow:tensorflow_py",
        ],
    )
    
    py_strict_binary(
        name = "shapes_for_arguments",
        srcs = ["shapes_for_arguments.py"],
        deps = [
            ":common",
            "//tensorflow:tensorflow_py",
        ],
    )
    
    py_strict_binary(
        name = "control_flow_upgrade_legacy_v1",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 20:57:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/api/specs/CompositeSpec.java

        private final Spec<? super T>[] specs;
    
        protected CompositeSpec() {
            this.specs = uncheckedCast(EMPTY);
        }
    
        protected CompositeSpec(Spec<? super T>... specs) {
            if (specs.length == 0) {
                this.specs = uncheckedCast(EMPTY);
            } else {
                this.specs = specs.clone();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top