Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 230 for Extract (0.12 sec)

  1. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	if externallyManaged {
    		return false, nil
    	}
    
    	// reads the current certificate
    	cert, err := handler.readwriter.Read()
    	if err != nil {
    		return false, err
    	}
    
    	// extract the certificate config
    	certConfig := certToConfig(cert)
    	for _, f := range handler.certConfigMutators {
    		if err := f(&certConfig); err != nil {
    			return false, err
    		}
    	}
    
    	cfg := &pkiutil.CertConfig{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

          return;
        }
      }
    
      bool is_signed = quant_specs_.IsSignedInferenceType();
      int bit_width = quant_specs_.GetQuantizationTypeWidth();
      // When this is true, the quantizer will try its best to extract the
      // quantization parameters from the op quantization property and constant
      // content. This is also set to true when the `quantize_allowlist` and
      // `quantize_signed` test flags are enabled.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	verCmd.Stdout = &verStdOut
    	verCmd.Stderr = &verStdErr
    
    	verExec := verCmd.Run()
    	if verExec == nil && !strings.Contains(verStdErr.String(), "unrecognized option") {
    		var parseErr error
    		// we found the binary - extract the version, then try to detect if rules already exist for that variant
    		parsedVer, parseErr = parseIptablesVer(verStdOut.String())
    		if parseErr != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/behind-a-proxy.md

    <a href="https://github.com/containous/traefik/releases" class="external-link" target="_blank">Download Traefik</a>, it's a single binary, you can extract the compressed file and run it directly from the terminal.
    
    Then create a file `traefik.toml` with:
    
    ```TOML hl_lines="3"
    [entryPoints]
      [entryPoints.http]
        address = ":9999"
    
    [providers]
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/context.go

    	}
    
    	// if not found, for backward compatibility, extract the namespace from
    	// the proxy domain. this is a k8s specific hack and should be enabled
    	parts := strings.Split(proxy.DNSDomain, ".")
    	if len(parts) > 1 { // k8s will have namespace.<domain>
    		return parts[0]
    	}
    
    	return ""
    }
    
    const (
    	serviceNodeSeparator = "~"
    )
    
    // ParsePort extracts port number from a valid proxy address
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  6. cmd/iam-etcd-store.go

    	users := set.NewStringSet()
    	for _, kv := range kvs {
    		user := extractPathPrefixAndSuffix(string(kv.Key), prefix, path.Base(string(kv.Key)))
    		users.Add(user)
    	}
    	return users
    }
    
    // Extract path string by stripping off the `prefix` value and the suffix,
    // value, usually in the following form.
    //
    //	s := "config/iam/users/foo/config.json"
    //	prefix := "config/iam/users/"
    //	suffix := "config.json"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    val generateRelocatedPackageList by tasks.registering(PackageListGenerator::class) {
        classpath.from(runtimeClasspath)
        outputFile = generatedTxtFileFor("api-relocated")
    }
    
    // Extract public API metadata from source code of Gradle module Jars packaged in the distribution (used by the two tasks below to handle default imports in build scripts)
    val dslMetaData by tasks.registering(ExtractDslMetaDataTask::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeAnnotatedMethodReader.java

                case PROPERTY:
                    return extractType(((DeclaredType) typeMirror).getTypeArguments().get(0));
                default:
                    throw new AnnotationReadFailure(String.format("Cannot extract original type for method '%s.%s: %s'. Use explicit @%s#originalType instead.", method.getEnclosingElement(), method, typeMirror, ReplacesEagerProperty.class.getSimpleName()));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  9. cmd/s3-zip-handlers.go

    	archiveInfoMetadataKey = ReservedMetadataPrefixLower + "archive-info" // "x-minio-internal-archive-info"
    
    	// Peek into a zip archive
    	xMinIOExtract = "x-minio-extract"
    )
    
    // splitZipExtensionPath splits the S3 path to the zip file and the path inside the zip:
    //
    //	e.g  /path/to/archive.zip/backup-2021/myimage.png => /path/to/archive.zip, backup/myimage.png
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

          return;
        }
      }
    
      bool is_signed = quant_specs_.IsSignedInferenceType();
      int bit_width = quant_specs_.GetQuantizationTypeWidth();
      // When this is true, the quantizer will try its best to extract the
      // quantization parameters from the op quantization property and constant
      // content. This is also set to true when the `quantize_allowlist` and
      // `quantize_signed` test flags are enabled.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top