Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for kindid (0.1 sec)

  1. src/internal/trace/internal/oldtrace/parser.go

    	return out[:size:size]
    }
    
    func (tr *Trace) STWReason(kindID uint64) STWReason {
    	if tr.Version < 21 {
    		if kindID == 0 || kindID == 1 {
    			return STWReason(kindID + 1)
    		} else {
    			return STWUnknown
    		}
    	} else if tr.Version == 21 {
    		if kindID < NumSTWReasons {
    			return STWReason(kindID)
    		} else {
    			return STWUnknown
    		}
    	} else {
    		return STWUnknown
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Emitter.kt

                )
            }.toList()
    
        if (binDir != null) {
            writeFile(
                moduleFileFor(binDir, moduleName),
                moduleMetadataBytesFor(emittedClassNames)
            )
        }
    
        return emittedClassNames
    }
    
    
    internal
    fun IO.makeAccessorOutputDirs(srcDir: File, binDir: File?, packagePath: String) = io {
        srcDir.resolve(packagePath).mkdirs()
        binDir?.apply {
            resolve(packagePath).mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

            def binDir = file('fake-bin')
    
            then:
            def path
            if (OperatingSystem.current().windows) {
                path = ''
            } else {
                // Set up a fake bin directory, containing the things that the script needs, minus any java that might be in /usr/bin
                links.each { linkToBinary(it, binDir) }
                path = binDir.absolutePath
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. cluster/images/etcd/migrate/options.go

    // for each version in the bundledVersions list.
    func validateBundledVersions(bundledVersions SupportedVersions, binDir string) error {
    	for _, v := range bundledVersions {
    		for _, binaryName := range []string{"etcd", "etcdctl"} {
    			fn := filepath.Join(binDir, fmt.Sprintf("%s-%s", binaryName, v))
    			if _, err := os.Stat(fn); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            def binDir = jdkHome.createDir("bin")
            binDir.createFile(OperatingSystem.current().getExecutableName("java"))
            return jdkHome
        }
    
        private TestFile createJreInstallation(String version) {
            def jdkHome = temporaryFolder.createDir("jdk-$version")
            def jreHome = jdkHome.file("jre").createDir()
            def binDir = jreHome.createDir("bin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. pkg/config/schema/codegen/templates/kind.go.tmpl

    	{{- if (eq $index 0) }}
    	{{.Resource.Identifier}} Kind = iota
    	{{- else }}
    	{{.Resource.Identifier}}
    	{{- end }}
    {{- end }}
    )
    
    func (k Kind) String() string {
    	switch k {
    {{- range .Entries }}
    	case {{.Resource.Identifier}}:
    		return "{{.Resource.Kind}}"
    {{- end }}
    	default:
    		return "Unknown"
    	}
    }
    
    func MustFromGVK(g config.GroupVersionKind) Kind {
    	switch g {
    {{- range .Entries }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 862 bytes
    - Viewed (0)
  7. pkg/config/analysis/local/helpers_test.go

    	"istio.io/istio/pkg/config/validation"
    )
    
    // K8SCollection1 describes the collection k8s/collection1
    var K8SCollection1 = r2.Builder{
    	Group:         "testdata.istio.io",
    	Kind:          "Kind1",
    	Plural:        "Kind1s",
    	Version:       "v1alpha1",
    	Proto:         "google.protobuf.Struct",
    	ReflectType:   reflect.TypeOf(&structpb.Struct{}).Elem(),
    	ProtoPackage:  "github.com/gogo/protobuf/types",
    	ClusterScoped: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/utils/fake_quant_utils.h

      bool operator()(TFFakeQuantOp tf_op, AttrType &min_value,
                      AttrType &max_value) const {
        Value min = tf_op.getMin(), max = tf_op.getMax();
        if (auto min_id = min.getDefiningOp<TF::IdentityOp>()) {
          min = min_id.getInput();
        }
        if (auto max_id = max.getDefiningOp<TF::IdentityOp>()) {
          max = max_id.getInput();
        }
    
        if (!matchPattern(min, m_Constant(&min_value))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

        classPath: ClassPath,
        srcDir: File,
        binDir: File?,
        packageName: String = kotlinDslPackageName,
        format: AccessorFormat = AccessorFormats.default
    ) {
        val availableSchema = availableProjectSchemaFor(projectSchema, classPath)
        emitAccessorsFor(
            availableSchema,
            srcDir,
            binDir,
            OutputPackage(packageName),
            format
        )
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. prow/integ-suite-kind.sh

    # LoadBalancer in Kind is supported using metallb
    export TEST_ENV=kind-metallb
    
    # See https://kind.sigs.k8s.io/docs/user/quick-start/#loading-an-image-into-your-cluster
    export PULL_POLICY=IfNotPresent
    
    # We run a local-registry in a docker container that KinD nodes pull from
    # These values are must match what is in config/trustworthy-jwt.yaml
    export KIND_REGISTRY_NAME="kind-registry"
    export KIND_REGISTRY_PORT="5000"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top