Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,539 for def2 (0.09 sec)

  1. .gitignore

    /default.etcd
    
    # Also ignore protoc installed by hack/install-protoc.sh
    /third_party/protoc*
    
    # User cluster configs
    .kubeconfig
    
    .tags*
    
    # Version file for dockerized build
    .dockerized-kube-version-defs
    
    # Web UI
    /www/master/node_modules/
    /www/master/npm-debug.log
    /www/master/shared/config/development.json
    
    # Karma output
    /www/test_out
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/openapi/enablement.go

    		for gvk, def := range defs {
    			orig := &def.Schema
    			if ret := pruneEnums(orig); ret != orig {
    				def.Schema = *ret
    				defs[gvk] = def
    			}
    		}
    	}
    }
    
    func pruneEnums(schema *spec.Schema) *spec.Schema {
    	walker := schemamutation.Walker{
    		SchemaCallback: func(schema *spec.Schema) *spec.Schema {
    			orig := schema
    			clone := func() {
    				if orig == schema { // if schema has not been mutated yet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 17:24:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. src/runtime/defs2_linux.go

    //go:build ignore
    
    /*
     * Input to cgo -cdefs
    
    GOARCH=386 go tool cgo -cdefs defs2_linux.go >defs_linux_386.h
    
    The asm header tricks we have to use for Linux on amd64
    (see defs.c and defs1.c) don't work here, so this is yet another
    file.  Sigh.
    */
    
    package runtime
    
    /*
    #cgo CFLAGS: -I/tmp/linux/arch/x86/include -I/tmp/linux/include -D_LOOSE_KERNEL_NAMES -D__ARCH_SI_UID_T=__kernel_uid32_t
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/NativeBinarySpecTest.groovy

        }
    
        def "library added to binary is ordered before library for source set"() {
            def binary = testBinary(component)
            def lib1 = new Object()
            def dep1 = Stub(NativeDependencySet)
            def lib2 = new Object()
            def dep2 = Stub(NativeDependencySet)
            def sourceLib = new Object()
            def sourceDep = Stub(NativeDependencySet)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependencyTest.groovy

        void "transitive resolution resolves all dependencies"() {
            def context = Mock(org.gradle.api.internal.artifacts.CachingDependencyResolveContext)
    
            def superConf = project.configurations.create("superConf")
            def conf = project.configurations.create("conf")
            conf.extendsFrom(superConf)
    
            def dep1 = Mock(ProjectDependency)
            def dep2 = Mock(ExternalDependency)
            conf.dependencies.add(dep1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/openapi/resolver/definitions.go

    	namer := openapi.NewDefinitionNamer(schemes...)
    	defs := getDefinitions(func(path string) spec.Ref {
    		return spec.MustCreateRef(path)
    	})
    	for name := range defs {
    		_, e := namer.GetDefinitionName(name)
    		gvks := extensionsToGVKs(e)
    		for _, gvk := range gvks {
    			gvkToRef[gvk] = name
    		}
    	}
    	return &DefinitionsSchemaResolver{
    		gvkToRef: gvkToRef,
    		defs:     defs,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 17:23:50 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. hack/verify-publishing-bot.py

                if "dependencies" in branch:
                    for dep2 in branch["dependencies"]:
                        processed_deps.append(dep2["repository"])
                        if dep2["branch"] != "master":
                            raise Exception("Looking for master branch and found : %s for destination", dep2,
                                            rule["destination"])
                        if dep2["repository"] == dep:
                            found = True
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 16:07:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenLocalModuleTest.groovy

        }
    
        def "Check packaging for set packaging"() {
            when:
            String packaging = mavenLocalModule.hasPackaging('war').packaging
    
            then:
            packaging != null
            packaging == 'war'
        }
    
        def "Check packaging for no set packaging"() {
            when:
            String packaging = mavenLocalModule.packaging
    
            then:
            packaging == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenFileModuleTest.groovy

        }
    
        def "Check packaging for set packaging"() {
            when:
            String packaging = mavenFileModule.hasPackaging('war').packaging
    
            then:
            packaging != null
            packaging == 'war'
        }
    
        def "Check packaging for no set packaging"() {
            when:
            String packaging = mavenFileModule.packaging
    
            then:
            packaging == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/cluster_scoping_pass_test.cc

    ==============================================================================*/
    
    #include "tensorflow/compiler/jit/cluster_scoping_pass.h"
    
    #include "absl/container/flat_hash_map.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/test_util.h"
    #include "tensorflow/core/common_runtime/graph_constructor.h"
    #include "tensorflow/core/common_runtime/graph_def_builder_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 29 16:20:48 UTC 2020
    - 6.7K bytes
    - Viewed (0)
Back to top