Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 243 for Extract (0.13 sec)

  1. 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 (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

                        }
                    } catch (final Exception e) {
                        // NOP
                    }
                }
            } catch (final Exception e) {
                throw new ExtractException("Could not extract a content.", e);
            } finally {
                FileUtil.deleteInBackground(tempFile);
            }
        }
    
        protected ParseContext createParseContext(final Parser parser, final Map<String, String> params) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/stdlib_test.go

    			if s, ok := p.(string); ok {
    				first = s
    			}
    		}
    	}()
    
    	syntax.CommentsDo(src, func(_, _ uint, text string) {
    		if text[0] != '/' {
    			return // not a comment
    		}
    
    		// extract comment text
    		if text[1] == '*' {
    			text = text[:len(text)-2]
    		}
    		text = strings.TrimSpace(text[2:])
    
    		if strings.HasPrefix(text, "go:build ") {
    			panic("skip")
    		}
    		if first == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. internal/etag/etag.go

    // existing ETag entry.
    //
    // Due to legacy S3 clients, that make incorrect assumptions
    // about HTTP headers, Set should be used instead of
    // http.Header.Set(...). Otherwise, some S3 clients will not
    // able to extract the ETag.
    func Set(etag ETag, h http.Header) {
    	// Some (broken) S3 clients expect the ETag header to
    	// literally "ETag" - not "Etag". Further, some clients
    	// expect an ETag in double quotes. Therefore, we set the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/go/ast/filter.go

    package ast
    
    import (
    	"go/token"
    	"slices"
    )
    
    // ----------------------------------------------------------------------------
    // Export filtering
    
    // exportFilter is a special filter function to extract exported nodes.
    func exportFilter(name string) bool {
    	return IsExported(name)
    }
    
    // FileExports trims the AST for a Go source file in place such that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top