Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 778 for dups (0.07 sec)

  1. tests/test_ws_dependencies.py

    async def index(websocket: WebSocket, deps: DepList):
        await websocket.accept()
        await websocket.send_text(json.dumps(deps))
        await websocket.close()
    
    
    @router.websocket("/router", dependencies=[create_dependency("routerindex")])
    async def routerindex(websocket: WebSocket, deps: DepList):
        await websocket.accept()
        await websocket.send_text(json.dumps(deps))
        await websocket.close()
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 11 20:35:39 UTC 2023
    - 2.1K bytes
    - Viewed (1)
  2. src/testing/internal/testdeps/deps.go

    Than McIntosh <******@****.***> 1716469651 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. istio.deps

    Istio Automation <******@****.***> 1718300916 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:36 UTC 2024
    - 335 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilderSpec.groovy

            resolvedConf("b", [])
            resolvedConf("c", [])
            resolvedConf("d", [])
    
            when:
            def deps = builder.getRoot(id("a")).dependencies
    
            then:
            def b = deps.find { it.selected.id.module == 'b' }
            def c = deps.find { it.selected.id.module == 'c' }
    
            b.selected.selectionReason.forced
            c.selected.selectionReason.conflictResolution
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/site/xdoc/maven-deps.odg

    Hervé Boutemy <******@****.***> 1711904300 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 24 16:01:00 UTC 2024
    - 37K bytes
    - Viewed (0)
  6. pilot/pkg/xds/debug.go

    		Name string
    		Href string
    		Help string
    	}
    	var deps []debugEndpoint
    	for k, v := range s.debugHandlers {
    		deps = append(deps, debugEndpoint{
    			Name: k,
    			Href: k,
    			Help: v,
    		})
    	}
    
    	sort.Slice(deps, func(i, j int) bool {
    		return deps[i].Name < deps[j].Name
    	})
    
    	if err := indexTmpl.Execute(w, deps); err != nil {
    		istiolog.Errorf("Error in rendering index template %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tfcompile.bzl

            use a tfcompile built with extra dependencies.
          include_standard_runtime_deps: If True, the standard list of
            kernel/runtime deps is added to deps.  If False, deps must contain the
            full set of deps needed by the generated library.
          enable_xla_hlo_profiling: Enable XLA HLO profiling in the generated
            program, and emit metadata that lets us pretty-print the gathered
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. src/syscall/exec_bsd.go

    			}
    			if err1 != 0 {
    				goto childerror
    			}
    			fd[i] = nextfd
    			nextfd++
    		}
    	}
    
    	// Pass 2: dup fd[i] down onto i.
    	for i = 0; i < len(fd); i++ {
    		if fd[i] == -1 {
    			RawSyscall(SYS_CLOSE, uintptr(i), 0, 0)
    			continue
    		}
    		if fd[i] == i {
    			// dup2(i, i) won't clear close-on-exec flag on Linux,
    			// probably not elsewhere either.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. tensorflow/cc/BUILD

        hdrs = ["gradients/grad_testutil.h"],
        deps = [
            ":grad_op_registry",
            ":ops",
            ":scope",
        ],
    )
    
    cc_library_with_android_deps(
        name = "ops",
        srcs = ["framework/ops.cc"],
        hdrs = ["framework/ops.h"],
        android_deps = ["//tensorflow/core:portable_tensorflow_lib"],
        deps = [
            "//tensorflow/core:core_cpu",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. tensorflow/c/BUILD

        copts = tf_copts(),
        visibility = ["//visibility:public"],
        deps = [
            ":c_api_macros",
            ":tf_shape_internal",
            "//tensorflow/core:framework",
        ],
    )
    
    cc_library(
        name = "tf_shape_internal",
        hdrs = ["tf_shape_internal.h"],
        copts = tf_copts(),
        visibility = ["//tensorflow:internal"],
        deps = [
            ":conversion_macros",
            "//tensorflow/core:framework",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top