Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for no_oss (0.1 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ModuleReplacementsData.java

     */
    
    package org.gradle.api.internal.artifacts.dsl;
    
    import org.gradle.api.artifacts.ModuleIdentifier;
    
    import javax.annotation.Nullable;
    
    public interface ModuleReplacementsData {
        ModuleReplacementsData NO_OP = new ModuleReplacementsData() {
            @Nullable
            @Override
            public Replacement getReplacementFor(ModuleIdentifier sourceModule) {
                return null;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

        # shellcheck disable=SC2153
        ./easyrsa --batch "--req-cn=${PRIMARY_CN}@$(date +%s)" build-ca nopass
        # SANS (expected to be) defined by caller
        # shellcheck disable=SC2153
        ./easyrsa --subject-alt-name="${SANS}" build-server-full "${MASTER_NAME}" nopass
        ./easyrsa build-client-full kube-apiserver nopass
    
        kube::util::ensure-cfssl "${KUBE_TEMP}/cfssl"
    
        # make the config for the signer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/internal/analysisutil/util.go

    	}
    	tf := pass.Fset.AddFile(filename, -1, len(content))
    	tf.SetLinesForContent(content)
    	return content, tf, nil
    }
    
    // LineStart returns the position of the start of the specified line
    // within file f, or NoPos if there is no line of that number.
    func LineStart(f *token.File, line int) token.Pos {
    	// Use binary search to find the start offset of this line.
    	//
    	// TODO(adonovan): eventually replace this function with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/TestInMemoryCacheFactory.java

                initializer.accept(cache);
            }
            return cache;
        }
    
        public PersistentCache open(File cacheDir, String displayName) {
            return new InMemoryCache(cacheDir, displayName, CleanupAction.NO_OP);
        }
    
        @Override
        public void visitCaches(CacheVisitor visitor) {
            throw new UnsupportedOperationException();
        }
    
        private class InMemoryCache implements PersistentCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/typeparams/common.go

    	switch e := n.(type) {
    	case *ast.IndexExpr:
    		return e.X, e.Lbrack, []ast.Expr{e.Index}, e.Rbrack
    	case *ast.IndexListExpr:
    		return e.X, e.Lbrack, e.Indices, e.Rbrack
    	}
    	return nil, token.NoPos, nil, token.NoPos
    }
    
    // PackIndexExpr returns an *ast.IndexExpr or *ast.IndexListExpr, depending on
    // the cardinality of indices. Calling PackIndexExpr with len(indices) == 0
    // will panic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/go/types/object.go

    	return &Var{object: object{nil, pos, pkg, name, typ, 0, colorFor(typ), nopos}}
    }
    
    // NewParam returns a new variable representing a function parameter.
    func NewParam(pos token.Pos, pkg *Package, name string, typ Type) *Var {
    	return &Var{object: object{nil, pos, pkg, name, typ, 0, colorFor(typ), nopos}, used: true} // parameters are always 'used'
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingServiceRegistry.java

     * </ol>
     */
    public abstract class LoggingServiceRegistry extends DefaultServiceRegistry {
    
        public static final ServiceRegistrationProvider NO_OP = new ServiceRegistrationProvider() {
            @Provides
            OutputEventListener createOutputEventListener() {
                return OutputEventListener.NO_OP;
            }
        };
    
        private TextStreamOutputEventListener stdoutListener;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

                    def filePropertyFactory = new DefaultFilePropertyFactory(PropertyHost.NO_OP, fileResolver, fileCollectionFactory)
                    return new DefaultProjectLayout(fileResolver.resolve("."), fileResolver, DefaultTaskDependencyFactory.withNoAssociatedProject(), PatternSets.getNonCachingPatternSetFactory(), PropertyHost.NO_OP, fileCollectionFactory, filePropertyFactory, filePropertyFactory)
                }
            })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tfcompile.bzl

        config = "test_graph_tfmatmul.config.pbtxt",
        cpp_class = "MatMulComp",
        graph = ":test_graph_tfmatmul.pb",
    )
    """
    
    load(
        "//tensorflow:tensorflow.bzl",
        "if_android",
        "if_google",
        "if_oss",
        "tf_cc_test",
        "tf_copts",
    )
    load("//tensorflow:tensorflow.default.bzl", "tfcompile_dfsan_abilists", "tfcompile_dfsan_enabled", "tfcompile_target_cpu")
    
    def _tfcompile_model_library_rule_impl(ctx):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    // Each TextEdit should apply to a single file. End should not be earlier in the file than Pos.
    type TextEdit struct {
    	// For a pure insertion, End can either be set to Pos or token.NoPos.
    	Pos     token.Pos
    	End     token.Pos
    	NewText []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top