Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for kindid (0.23 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Stage1BlocksAccessorClassPath.kt

        val kmType: KmType
            get() = newClassTypeOf(internalName.value)
    }
    
    
    internal
    fun IO.writeClassFileTo(binDir: File, internalClassName: InternalName, classBytes: ByteArray) {
        val classFile = binDir.resolve("$internalClassName.class")
        writeFile(classFile, classBytes)
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 18:58:57 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. 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)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocatorTest.groovy

            result.component.baseDir == dir2
        }
    
        def "uses windows kit if version is higher than windows SDK"() {
            def dir1 = sdkDir("sdk1")
            def dir2 = kitDir("sdk2")
            def dir3 = kitDir("sdk3")
    
            given:
            operatingSystem.findInPath(_) >> null
            windowsRegistry.getSubkeys(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, /SOFTWARE\Microsoft\SDKs\Windows/) >> ["v1"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractorTest.kt

            val binDir = newFolder("bin")
            compileToDirectory(
                binDir,
                KotlinCompilerOptions(),
                "test",
                listOf(sourceFile),
                loggerFor<KotlinApiClassExtractorTest>(),
                emptyList()
            )
    
            return ClassFixture(scriptBody, binDir.toPath().resolve(scriptClass).toFile().readBytes())
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-backend-kind.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-backend-kind
    spec:
      rules:
      - backendRefs:
        - kind: "*"
          name: foo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 180 bytes
    - Viewed (0)
  6. src/runtime/metrics/sample.go

    // must share no underlying memory. When in doubt, create a new []Sample from
    // scratch, which is always safe, though may be inefficient.
    //
    // Sample values with names not appearing in [All] will have their Value populated
    // as KindBad to indicate that the name is unknown.
    func Read(m []Sample) {
    	runtime_readMetrics(unsafe.Pointer(&m[0]), len(m), cap(m))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/CommandLineToolVersionLocatorTest.groovy

                    "channelUri": "https://aka.ms/vs/15/release/channel",
                    "releaseNotes": "https://go.microsoft.com/fwlink/?LinkId=660469#15.3.26730.16",
                    "thirdPartyNotices": "https://go.microsoft.com/fwlink/?LinkId=660485"
                  },
                  {
                    "instanceId": "VisualStudio.14.0",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/users/users_linux.go

    	id        int64
    	gid       int64
    	userNames []string
    	shell     string
    }
    
    // limits is used to hold information about the minimum and maximum system ranges for UID and GID.
    type limits struct {
    	minUID, maxUID, minGID, maxGID int64
    }
    
    const (
    	// These are constants used when parsing /etc/passwd or /etc/group in terms of how many
    	// fields and entry has.
    	totalFieldsGroup = 4
    	totalFieldsUser  = 7
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K 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