Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 301 for inter (0.05 sec)

  1. pkg/scheduler/testing/wrappers.go

    	return &ContainerWrapper{v1.Container{}}
    }
    
    // Obj returns the inner Container.
    func (c *ContainerWrapper) Obj() v1.Container {
    	return c.Container
    }
    
    // Name sets `n` as the name of the inner Container.
    func (c *ContainerWrapper) Name(n string) *ContainerWrapper {
    	c.Container.Name = n
    	return c
    }
    
    // Image sets `image` as the image of the inner Container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

    }
    
    //===----------------------------------------------------------------------===//
    // tf_executor.Enter
    //===----------------------------------------------------------------------===//
    
    // Default number for the parallel_iterations attributes on Enter nodes.
    static constexpr int kDefaultParallelIterations = 10;
    
    void EnterOp::print(OpAsmPrinter &p) {
      p << ' ';
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_cluster_util_test.cc

      Scope root = Scope::NewRootScope().ExitOnError();
    
      Output a = ops::Const(root.WithOpName("a"), Input::Initializer(0.0));
      Output enter =
          ops::internal::Enter(root.WithOpName("enter"), a, "only_frame");
      Output exit = ops::internal::Exit(root.WithOpName("exit"), enter);
      Output b = ops::Add(root.WithOpName("b"), a, exit);
    
      FixupSourceAndSinkEdges(root.graph());
    
      GraphCycles cycles;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/crypto/tls/tls.go

    }
    
    // NewListener creates a Listener which accepts connections from an inner
    // Listener and wraps each connection with [Server].
    // The configuration config must be non-nil and must include
    // at least one certificate or else set GetCertificate.
    func NewListener(inner net.Listener, config *Config) net.Listener {
    	l := new(listener)
    	l.Listener = inner
    	l.config = config
    	return l
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandlerTest.groovy

                def a = it.askQuestion("enter value", "value")
                def b = it.askQuestion("enter another value", "value")
                [a, b]
            }
    
            then:
            1 * outputEventBroadcaster.onOutput(_ as UserInputRequestEvent)
            1 * outputEventBroadcaster.onOutput(_) >> { TextQuestionPromptEvent event ->
                assert event.question == "enter value"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    			if len(v.inner) > 1 {
    				fmt.Fprintf(&inner, ",")
    			}
    			fmt.Fprintf(&inner, " ")
    			if i == len(v.inner)-1 {
    				fmt.Fprintf(&inner, "or ")
    			}
    			fmt.Fprintf(&inner, "%s+%d(FP)", vi.name, vi.off)
    		}
    		badf("invalid offset %s; expected %s+%d(FP)%s", expr, v.name, v.off, inner.String())
    		return
    	}
    	if kind != 0 && kind != vk {
    		var inner bytes.Buffer
    		if len(v.inner) > 0 {
    			fmt.Fprintf(&inner, " containing")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilder.java

                ImmutableVersionConstraint version = owner.versionConstraintInterner.intern(DefaultImmutableVersionConstraint.of(versionBuilder));
                DependencyModel model = new DependencyModel(owner.intern(group), owner.intern(name), null, version, owner.currentContext);
                Supplier<DependencyModel> previous = owner.libraries.put(owner.intern(alias), () -> model);
                if (previous != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. src/go/types/stmt.go

    			}
    			check.caseValues(&x, clause.List, seen)
    			check.openScope(clause, "case")
    			inner := inner
    			if i+1 < len(s.Body.List) {
    				inner |= fallthroughOk
    			} else {
    				inner |= finalSwitchCase
    			}
    			check.stmtList(inner, clause.Body)
    			check.closeScope()
    		}
    
    	case *ast.TypeSwitchStmt:
    		inner |= breakOk | inTypeSwitch
    		check.openScope(s, "type switch")
    		defer check.closeScope()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/stmt.go

    	ok := ctxt&fallthroughOk != 0
    	inner := ctxt &^ fallthroughOk
    	list = trimTrailingEmptyStmts(list) // trailing empty statements are "invisible" to fallthrough analysis
    	for i, s := range list {
    		inner := inner
    		if ok && i+1 == len(list) {
    			inner |= fallthroughOk
    		}
    		check.stmt(inner, s)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

       * methods that do not take an explicit timeout value, a single test case is generated only if the
       * implicit timeout of that method matches the given timeoutsToUse. For example, enter() is
       * treated like enter(MAX, MILLIS) and tryEnter() is treated like enter(0, MILLIS).
       */
      private static void addTests(
          TestSuite suite,
          Method method,
          Scenario scenario,
          TimeoutsToUse timeoutsToUse,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top