Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 75 for inter (0.13 sec)

  1. common/scripts/metallb-native.yaml

                type: string
              kind:
                description: 'Kind is a string value representing the REST resource this
                  object represents. Servers may infer this from the endpoint the client
                  submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
                type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. tests/integration/security/authz_test.go

    //go:build integ
    // +build integ
    
    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    // then the entire ecosystem of packages with that as a dependency had to
    // explicitly update to the new version. Many packages depend on
    // assume-no-moving-gc transitively, through paths like
    // inet.af/netaddr -> go4.org/intern -> assume-no-moving-gc.
    // This was causing a significant amount of friction around each new
    // release, so we added this bool for the package to //go:linkname
    // instead. The bool is still unfortunate, but it's not as bad as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      auto a = ops::Placeholder(root.WithOpName("A"), DT_FLOAT);
      auto b = ops::Placeholder(root.WithOpName("B"), DT_FLOAT);
      auto c = ops::Add(root.WithOpName("C"), a, b);
      auto enter = ops::internal::Enter(root, c, "aframe");
      auto next_iter = ops::NextIteration(root, enter);
      auto exit = ops::internal::Exit(root, next_iter);
      auto d = ops::Add(root.WithOpName("D"), c, exit);
    
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

        }
    
        def "shallow copy reflects changes to inner collection"() {
            given:
            def inner = new DefaultConfigurableFileCollection("<display>", fileResolver, taskDependencyFactory, patternSetFactory, host).from(containing(new File("a")))
            collection.from(inner)
    
            when:
            def copy = collection.shallowCopy()
            inner.from(containing(new File("b")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    			return
    		}
    		name, want := m[1], m[2]
    
    		// Look up the name in the innermost enclosing scope.
    		inner := mainScope.Innermost(pos)
    		if inner == nil {
    			t.Errorf("%s: at %s: can't find innermost scope", pos, text)
    			return
    		}
    		got := "undef"
    		if _, obj := inner.LookupParent(name, pos); obj != nil {
    			kind := strings.ToLower(strings.TrimPrefix(reflect.TypeOf(obj).String(), "*types2."))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    		innerPC := fFunc.Entry() + uintptr(offset)
    		inner := runtime.FuncForPC(innerPC)
    		if inner == nil {
    			// No function known for this PC value.
    			// It might simply be misaligned, so keep searching.
    			continue
    		}
    		if inner.Entry() != fFunc.Entry() {
    			// Scanned past f and didn't find any inlined functions.
    			break
    		}
    		if inner.Name() != fFunc.Name() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    			name, want := m[1], m[2]
    
    			// Look up the name in the innermost enclosing scope.
    			inner := mainScope.Innermost(comment.Pos())
    			if inner == nil {
    				t.Errorf("%s: at %s: can't find innermost scope",
    					fset.Position(comment.Pos()), comment.Text)
    				continue
    			}
    			got := "undef"
    			if _, obj := inner.LookupParent(name, comment.Pos()); obj != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    .Setting up working integration tests
    ====
    include::sample[dir="snippets/java/basic/kotlin",files="build.gradle.kts[tags=practical-integ-test-source-set]"]
    include::sample[dir="snippets/java/basic/groovy",files="build.gradle[tags=practical-integ-test-source-set]"]
    ====
    
    This will set up a new source set called `intTest` that automatically creates:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        Type prev_input_ty, inferred_ty;
        SmallVector<Value, 4> expanded_inputs;
        expanded_inputs.reserve(op.getN());
        for (Value input : op.getValues()) {
          // If input type is different than the previous input type, infer the
          // output type. Otherwise, use the already inferred output type from the
          // previous iteration.
          Type input_ty = input.getType();
          if (input_ty != prev_input_ty) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top