Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for growing (0.12 sec)

  1. pkg/config/analysis/analyzers/testdata/injection.yaml

      namespace: default
      annotations:
        sidecar.istio.io/inject: "false"
    spec:
      containers:
      - image: gcr.io/google-samples/microservices-demo/adservice:v0.1.1
        name: server
    ---
    # Control plane pod proving the existence of istio.io/rev 'canary'
    apiVersion: v1
    kind: Pod
    metadata:
      name: istiod-canary-1234567890-12345
      namespace: istio-system
      labels:
        app: istiod
        istio: pilot
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 14:06:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/reflect/example_test.go

    	// hi
    	// 42
    	// unhandled kind func
    }
    
    func ExampleMakeFunc() {
    	// swap is the implementation passed to MakeFunc.
    	// It must work in terms of reflect.Values so that it is possible
    	// to write code without knowing beforehand what the types
    	// will be.
    	swap := func(in []reflect.Value) []reflect.Value {
    		return []reflect.Value{in[1], in[0]}
    	}
    
    	// makeSwap expects fptr to be a pointer to a nil function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:04:36 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/dataclasses.md

    # Using Dataclasses
    
    FastAPI is built on top of **Pydantic**, and I have been showing you how to use Pydantic models to declare requests and responses.
    
    But FastAPI also supports using <a href="https://docs.python.org/3/library/dataclasses.html" class="external-link" target="_blank">`dataclasses`</a> the same way:
    
    ```Python hl_lines="1  7-12  19-20"
    {!../../../docs_src/dataclasses/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/cmd/doc/testdata/pkg.go

    const unexportedTypedConstant ExportedType = 1 // In a separate section to test -u.
    
    // Comment about exported interface.
    type ExportedInterface interface {
    	// Comment before exported method.
    	//
    	//	// Code block showing how to use ExportedMethod
    	//	func DoSomething() error {
    	//		ExportedMethod()
    	//		return nil
    	//	}
    	//
    	ExportedMethod()   // Comment on line with exported method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. pkg/client/tests/listwatch_test.go

    )
    
    func parseSelectorOrDie(s string) fields.Selector {
    	selector, err := fields.ParseSelector(s)
    	if err != nil {
    		panic(err)
    	}
    	return selector
    }
    
    // buildQueryValues is a convenience function for knowing if a namespace should be in a query param or not
    func buildQueryValues(query url.Values) url.Values {
    	v := url.Values{}
    	for key, values := range query {
    		for _, value := range values {
    			v.Add(key, value)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 02 17:08:23 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm.go

    	objdumpOutputFunctionLLVM = regexp.MustCompile(`^([[:xdigit:]]+)?\s?(.*):`)
    )
    
    func findSymbols(syms []byte, file string, r *regexp.Regexp, address uint64) ([]*plugin.Sym, error) {
    	// Collect all symbols from the nm output, grouping names mapped to
    	// the same address into a single symbol.
    
    	// The symbols to return.
    	var symbols []*plugin.Sym
    
    	// The current group of symbol names, and the address they are all at.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. pkg/probe/http/http.go

    	"k8s.io/kubernetes/pkg/probe"
    
    	"k8s.io/klog/v2"
    	utilio "k8s.io/utils/io"
    )
    
    const (
    	maxRespBodyLength = 10 * 1 << 10 // 10KB
    )
    
    // New creates Prober that will skip TLS verification while probing.
    // followNonLocalRedirects configures whether the prober should follow redirects to a different hostname.
    // If disabled, redirects to other hosts will trigger a warning result.
    func New(followNonLocalRedirects bool) Prober {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 00:37:32 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	"k8s.io/client-go/kubernetes"
    	"k8s.io/component-base/featuregate"
    )
    
    // RecommendedOptions contains the recommended options for running an API server.
    // If you add something to this list, it should be in a logical grouping.
    // Each of them can be nil to leave the feature unconfigured on ApplyTo.
    type RecommendedOptions struct {
    	Etcd           *EtcdOptions
    	SecureServing  *SecureServingOptionsWithLoopback
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/common/tfl_pass_config.h

      llvm::ArrayRef<std::string> trim_functions_allowlist;
      // All information about quantization.
      quant::QuantizationSpecs quant_specs;
      // If `form_clusters` is true , clusters are formed by grouping consecutive
      // ops of the same device, under a `tf_device.launch` op.
      bool form_clusters = false;
      // If `unfold_batch_matmul` is true, the tf.BatchMatMul is unfolded to a set
      // of tfl.fully_connected ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java

            extensionMap.put("odp", "pdf");
            extensionMap.put("otp", "pdf");
            extensionMap.put("sxi", "pdf");
            extensionMap.put("ppt", "pdf");
            extensionMap.put("pptx", "pdf");
            // Drawing Formats
            extensionMap.put("odg", "svg");
            extensionMap.put("otg", "svg");
    
            extractorMap.put("pdf", new PdfExtractor());
            extractorMap.put("svg", new XmlExtractor());
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top