Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 163 for VISIBILITY (0.13 sec)

  1. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/test-full.xml

    		<e:someExtra>56576</e:someExtra>
    	</info>
    	<configurations>
    		<conf name="myconf1" description="desc 1" e:attr2="value2"/>
    		<conf name="myconf2" description="desc 2" visibility="public"/>
    		<conf name="myconf3" description="desc 3" visibility="private"/>
    		<conf name="myconf4" description="desc 4" extends="myconf1, myconf2"/>
    		<conf name="myoldconf" description="my old desc" deprecated="20050115"/>
    	</configurations>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptorConfiguration.groovy

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.ivy
    
    class IvyDescriptorConfiguration {
    
        String name
        String visibility
        String description
        Set<String> extend
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 778 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/BUILD

        licenses = ["notice"],
    )
    
    cc_library(
        name = "mlir_bridge_rollout_policy",
        srcs = ["mlir_bridge_rollout_policy.cc"],
        hdrs = ["mlir_bridge_rollout_policy.h"],
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/compiler/jit:flags",
            "//tensorflow/core:graph",
            "//tensorflow/core:protos_all_cc",
            "@com_google_absl//absl/types:optional",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 19 22:54:26 UTC 2023
    - 970 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/saved_model/BUILD

            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Parser",
        ],
    )
    
    filegroup(
        name = "testdata",
        srcs = glob(
            ["testdata/**"],
        ),
        visibility = ["//visibility:public"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 26 01:22:34 UTC 2023
    - 1011 bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/conversion.go

    	if svc.Annotations[annotation.NetworkingExportTo.Name] != "" {
    		namespaces := strings.Split(svc.Annotations[annotation.NetworkingExportTo.Name], ",")
    		exportTo = sets.NewWithLength[visibility.Instance](len(namespaces))
    		for _, ns := range namespaces {
    			exportTo.Insert(visibility.Instance(ns))
    		}
    	}
    
    	istioService := &model.Service{
    		Hostname: ServiceHostname(svc.Name, svc.Namespace, domainSuffix),
    		ClusterVIPs: model.AddressMap{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/TimeoutFuture.java

        result.timer = scheduledExecutor.schedule(fire, time, unit);
        delegate.addListener(fire, directExecutor());
        return result;
      }
    
      /*
       * Memory visibility of these fields. There are two cases to consider.
       *
       * 1. visibility of the writes to these fields to Fire.run:
       *
       * The initial write to delegateRef is made definitely visible via the semantics of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/ops/BUILD

        ],
        py_lib_rule = py_strict_library,
        deps = ["//tensorflow/compiler/jit/ops:xla_ops"],
    )
    
    py_strict_library(
        name = "xla_ops_grad",
        srcs = ["xla_ops_grad.py"],
        srcs_version = "PY3",
        visibility = [
            "//tensorflow/compiler/tf2xla:internal",
            "//tensorflow/python/ops:__pkg__",
        ],
        deps = ["//tensorflow/python/framework:ops"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 09:08:06 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/InstrumentedInputs.java

        /**
         * @deprecated do not use outside of this class
         */
        @Deprecated
        public static InstrumentedInputsListener listener() {
            // TODO(mlopatkin): Reduce the visibility of this method once everything moves into this project.
            return LISTENER.get();
        }
    
        public static void setListener(InstrumentedInputsListener listener) {
            LISTENER.set(listener);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptor.groovy

            }
    
            ivy.configurations.conf.each {
                configurations[it.@name] = new IvyDescriptorConfiguration(
                        name: it.@name, visibility: it.@visibility, description: it.@description,
                        extend: it.@extends == null ? null : ******@****.***(",")*.trim()
                )
            }
    
            ivy.publications.artifact.each { artifact ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

    load("//:junit.bzl", "junit_tests")
    
    java_library(
        name = "project${subProjectNumber}",
        srcs = glob(["src/main/java/**/*.java"]),
        javacopts = ["-XepDisableAllChecks"],
        visibility = ["//visibility:public"],
        deps = [
    ${subProjectDependencies}
        ]
    )
    
    junit_tests(
        name = "tests_for_project${subProjectNumber}",
        size = "small",
        srcs = glob(["src/test/java/**/*.java"]),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top