Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 283 for translated (0.18 sec)

  1. operator/pkg/translate/translate_value.go

    	}
    	// translate remaining untranslated paths into component values
    	err = t.translateRemainingPaths(valueTree, cpSpecTree, nil)
    	if err != nil {
    		return fmt.Errorf("error when translating remaining path: %v", err)
    	}
    	return nil
    }
    
    // TranslateK8S is a helper function to translate k8s settings from values.yaml to IstioOperator, except for gateways.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. pkg/kubelet/pod/pod_manager.go

    	if uid == "" {
    		return kubetypes.ResolvedPodUID(uid)
    	}
    
    	pm.lock.RLock()
    	defer pm.lock.RUnlock()
    	if translated, ok := pm.translationByUID[kubetypes.MirrorPodUID(uid)]; ok {
    		return translated
    	}
    	return kubetypes.ResolvedPodUID(uid)
    }
    
    func (pm *basicManager) GetUIDTranslations() (podToMirror map[kubetypes.ResolvedPodUID]kubetypes.MirrorPodUID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. src/net/http/cgi/cgi_main.go

    	switch path.Join(os.Getenv("SCRIPT_NAME"), os.Getenv("PATH_INFO")) {
    	case "/bar", "/test.cgi", "/myscript/bar", "/test.cgi/extrapath":
    		testCGI()
    		return
    	}
    	childCGIProcess()
    }
    
    // testCGI is a CGI program translated from a Perl program to complete host_test.
    // test cases in host_test should be provided by testCGI.
    func testCGI() {
    	req, err := Request()
    	if err != nil {
    		panic(err)
    	}
    
    	err = req.ParseForm()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

                                           mhlo::TupleOp tuple_results,
                                           llvm::SmallVector<Value>& outputs);
    
      // Given a translated function with a single return value, unpack the tuple
      // results.
      mlir::LogicalResult UnpackTupleResults(mhlo::TupleOp tuple_result,
                                             llvm::SmallVector<Value>& outputs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. operator/pkg/translate/translate_common.go

    	}
    	return enableNode, true, nil
    }
    
    // OverlayValuesEnablement overlays any enablement in values path from the user file overlay or set flag overlay.
    // The overlay is translated from values to the corresponding addonComponents enablement paths.
    func OverlayValuesEnablement(baseYAML, fileOverlayYAML, setOverlayYAML string) (string, error) {
    	overlayYAML, err := util.OverlayYAML(fileOverlayYAML, setOverlayYAML)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. internal/kms/errors.go

    	ErrNotSupported = Error{
    		Code:    http.StatusNotImplemented,
    		APICode: "kms:NotSupported",
    		Err:     "requested functionality is not supported",
    	}
    )
    
    // Error is a KMS error that can be translated into an S3 API error.
    //
    // It does not implement the standard error Unwrap interface for
    // better error log messages.
    type Error struct {
    	Code    int    // The HTTP status code returned to the client
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. pkg/kubelet/types/types.go

    	System v1.ResourceList
    	// Kubernetes represents resources reserved for kubernetes system components.
    	Kubernetes v1.ResourceList
    }
    
    // ResolvedPodUID is a pod UID which has been translated/resolved to the representation known to kubelets.
    type ResolvedPodUID types.UID
    
    // MirrorPodUID is a pod UID for a mirror pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. cmd/httprange_test.go

    		h, err := rs.ToHeader()
    		if err != nil && !testCase.errExpected || err == nil && testCase.errExpected {
    			t.Errorf("expected error with invalid range: %v", err)
    		}
    		if h != testCase.spec {
    			t.Errorf("Case %d: translated to incorrect header: %s expected: %s",
    				i, h, testCase.spec)
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 05 16:56:21 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. operator/pkg/translate/translate.go

    	// HelmValuesTagSubpath is the subpath from the component root to the tag parameter.
    	HelmValuesTagSubpath = "tag"
    )
    
    var scope = log.RegisterScope("translator", "API translator")
    
    // Translator is a set of mappings to translate between API paths, charts, values.yaml and k8s paths.
    type Translator struct {
    	// Translations remain the same within a minor version.
    	Version version.MinorVersion
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/base/EquivalenceTest.java

      }
    
      /*
       * We use large numbers to avoid the integer cache. Normally, we'd accomplish that merely by using
       * `new Integer` (as we do) instead of `Integer.valueOf`. However, under J2KT, `new Integer`
       * gets translated back to `Integer.valueOf` because that is the only thing J2KT can support. And
       * anyway, it's nice to avoid `Integer.valueOf` because the Android toolchain optimizes multiple
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top