Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for visibility (0.17 sec)

  1. tensorflow/BUILD

        name = "linux_aarch64",
        values = {"cpu": "aarch64"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "linux_armhf",
        values = {"cpu": "armhf"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "linux_x86_64",
        values = {"cpu": "k8"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "haswell",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/BUILD

    # builds.
    filegroup(
        name = "mobile_srcs_no_runtime",
        srcs = [
            "defs.cc",
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    # Target that bundles up the XLA CPU and GPU JIT devices.
    cc_library(
        name = "jit",
        visibility = [
            ":friends",
            "//learning/tfx:__subpackages__",
        ],
        deps = [
            ":xla_cpu_device",
            ":xla_cpu_jit",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    		if ps.exportToDefaults.service.Contains(visibility.Private) {
    			return ns == namespace
    		} else if ps.exportToDefaults.service.Contains(visibility.Public) {
    			return true
    		}
    	}
    
    	return service.Attributes.ExportTo.Contains(visibility.Public) ||
    		(service.Attributes.ExportTo.Contains(visibility.Private) && ns == namespace) ||
    		service.Attributes.ExportTo.Contains(visibility.Instance(namespace))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			expect:   false,
    		},
    		{
    			name:     "public visibility, spec change",
    			prevConv: newService(visibility.Public, []int{80}),
    			currConv: newService(visibility.Public, []int{80, 443}),
    			expect:   true,
    		},
    		{
    			name:     "none visibility, spec change",
    			prevConv: newService(visibility.None, []int{80}),
    			currConv: newService(visibility.None, []int{80, 443}),
    			expect:   false,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/BUILD

            "//tensorflow/compiler/mlir/...",
            "//tensorflow/lite/python/...",
            "//waymo/accelerator/alpine/tools/...",
            "//waymo/ml/compiler/mlir/...",
            # Allow visibility from the mlir language server.
            "//learning/brain/mlir/mlir_lsp_server/...",
            "//research/language_modeling/sentence_explorer/ondevice/...",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

            rewriter.create<func::FuncOp>(loc, "cond_true", func_type);
        CreateCondTrueBranch(op, shape_dtype, result_type, then_branch_op,
                             &rewriter);
        then_branch_op.setVisibility(func::FuncOp::Visibility::Private);
    
        // Constructs `else_branch`, which is executed when `if_cond` evaluates to
        // false.
        auto else_branch_op =
            rewriter.create<func::FuncOp>(loc, "cond_false", func_type);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

    h4>a.anchor,
    h5>a.anchor,
    h6>a.anchor {
    	position: absolute;
    	z-index: 1001;
    	width: 1.5ex;
    	margin-left: -1.5ex;
    	display: block;
    	text-decoration: none !important;
    	visibility: hidden;
    	text-align: center;
    	font-weight: normal;
    }
    
    #content h1>a.anchor:before,
    h2>a.anchor:before,
    h3>a.anchor:before,
    #toctitle>a.anchor:before,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * ensure that completed write operations performed by other threads are noticed. For most
         * purposes, the "count" field, tracking the number of elements, serves as that volatile
         * variable ensuring visibility. This is convenient because this field needs to be read in many
         * read operations anyway:
         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    // visibility set to STV_HIDDEN. They become local symbols in
    // the final executable. Only relevant when internally linking
    // on an ELF platform.
    func (l *Loader) AttrVisibilityHidden(i Sym) bool {
    	if !l.IsExternal(i) {
    		return false
    	}
    	return l.attrVisibilityHidden.Has(l.extIndex(i))
    }
    
    // SetAttrVisibilityHidden sets the "hidden visibility" property for a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            configuration.toString() == "configuration ':build:project:name'"
            configuration.incoming.toString() == "dependencies ':build:project:name'"
        }
    
        def "set description, visibility and transitivity"() {
            given:
            def configuration = conf()
    
            when:
            configuration.setDescription("description")
            configuration.setVisible(false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top