Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 600 for translated (0.19 sec)

  1. tools/istio-iptables/pkg/config/validation.go

    )
    
    const (
    	// Due to implementation constraints, we have to impose a limit on the
    	// number of owner groups whose outgoing traffic should be redirected
    	// to Envoy.
    	//
    	// Since all included groups will be translated into a single Iptables
    	// rule that combines N match expressions `-m owner ! --gid-owner <GID>`,
    	// we need to be sure it won't be too long.
    	//
    	// Most common Linux distributions allow no more than 128-1200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 11 02:38:28 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/MavenVersionSelectorScheme.java

            return defaultVersionSelectorScheme.complementForRejection(selector);
        }
    
        // TODO: VersionSelector should be more descriptive, so it can be directly translated
        private String toMavenSyntax(String version) {
            if (version.equals(LATEST_INTEGRATION)) {
                return LATEST;
            }
            if (version.equals(LATEST_RELEASE)) {
                return RELEASE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. tests/error_translator_test.go

    import (
    	"errors"
    	"testing"
    
    	"gorm.io/gorm"
    	"gorm.io/gorm/utils/tests"
    )
    
    func TestDialectorWithErrorTranslatorSupport(t *testing.T) {
    	// it shouldn't translate error when the TranslateError flag is false
    	translatedErr := errors.New("translated error")
    	untranslatedErr := errors.New("some random error")
    	db, _ := gorm.Open(tests.DummyDialector{TranslatedErr: translatedErr})
    
    	err := db.AddError(untranslatedErr)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jul 12 13:21:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. hack/update-translations.sh

            msgmerge -s --no-fuzzy-matching "${PO_FILE}" - > "${TMP}"
        else
          # mark obsolete, but do not add untranslated messages
          msgmerge -s --no-fuzzy-matching "${PO_FILE}" "${TRANSLATIONS}/kubectl/template.pot" | msgattrib --translated - > "${TMP}"
        fi
        mv "${TMP}" "${PO_FILE}"
      done
    fi
    
    if [[ "${generate_mo}" == "true" ]]; then
      echo "Generating .po and .mo files"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 03:48:42 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. 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)
  6. src/image/ycbcr_test.go

    			}
    		}
    		if testing.Short() {
    			break
    		}
    	}
    }
    
    func testYCbCr(t *testing.T, r Rectangle, subsampleRatio YCbCrSubsampleRatio, delta Point) {
    	// Create a YCbCr image m, whose bounds are r translated by (delta.X, delta.Y).
    	r1 := r.Add(delta)
    	m := NewYCbCr(r1, subsampleRatio)
    
    	// Test that the image buffer is reasonably small even if (delta.X, delta.Y) is far from the origin.
    	if len(m.Y) > 100*100 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 26 00:14:16 UTC 2015
    - 3.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top