Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 223 for mapvar (0.16 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    			var mapErr error
    			stagingPath, mapErr = customBlockVolumeMapper.SetUpDevice()
    			if mapErr != nil {
    				og.markDeviceErrorState(volumeToMount, devicePath, globalMapPath, mapErr, actualStateOfWorld)
    				// On failure, return error. Caller will log and retry.
    				eventErr, detailedErr := volumeToMount.GenerateError("MapVolume.SetUpDevice failed", mapErr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. docs/tr/docs/deployment/index.md

    Bu, kodu sürekli olarak değiştirdiğiniz, hata alıp hata giderdiğiniz, geliştirme sunucusunu durdurup yeniden başlattığınız vb. **geliştirme** aşamalarının tam tersidir.
    
    ## Deployment Stratejileri
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:46:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/strconv/atoi.go

    		if d >= byte(base) {
    			return 0, syntaxError(fnParseUint, s0)
    		}
    
    		if n >= cutoff {
    			// n*base overflows
    			return maxVal, rangeError(fnParseUint, s0)
    		}
    		n *= uint64(base)
    
    		n1 := n + uint64(d)
    		if n1 < n || n1 > maxVal {
    			// n+d overflows
    			return maxVal, rangeError(fnParseUint, s0)
    		}
    		n = n1
    	}
    
    	if underscores && !underscoreOK(s0) {
    		return 0, syntaxError(fnParseUint, s0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultModelPathTranslator.java

            }
        }
    
        private <T> List<T> map(List<T> resources, Function<T, T> mapper) {
            List<T> newResources = null;
            if (resources != null) {
                for (int i = 0; i < resources.size(); i++) {
                    T resource = resources.get(i);
                    T newResource = mapper.apply(resource);
                    if (newResource != null) {
                        if (newResources == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelPathTranslator.java

            }
            return model;
        }
    
        private <T> List<T> map(List<T> resources, Function<T, T> mapper) {
            List<T> newResources = null;
            if (resources != null) {
                for (int i = 0; i < resources.size(); i++) {
                    T resource = resources.get(i);
                    T newResource = mapper.apply(resource);
                    if (newResource != null) {
                        if (newResources == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/metrics/metrics_test.go

    	}
    
    	mounter, err := fakePlugin.NewMounter(volumeSpec, pod, volume.VolumeOptions{})
    	if err != nil {
    		t.Fatalf("NewMounter failed. Expected: <no error> Actual: <%v>", err)
    	}
    
    	mapper, err := fakePlugin.NewBlockVolumeMapper(volumeSpec, pod, volume.VolumeOptions{})
    	if err != nil {
    		t.Fatalf("NewBlockVolumeMapper failed. Expected: <no error> Actual: <%v>", err)
    	}
    
    	// Add one volume to ActualStateOfWorld
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

        IRMapping mapper;
        bool has_type_change = false;
        for (auto [original, updated] : llvm::zip(op->getOperands(), operands)) {
          Type original_ty = original.getType();
          Type updated_ty = updated.getType();
          if (original_ty != updated_ty) has_type_change = true;
    
          if (!ShouldRefineTypeTo(original_ty, updated_ty)) return failure();
          mapper.map(original, updated);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. operator/pkg/translate/translate_test.go

    			assert.NoError(t, err)
    			val := obj.UnstructuredObject().Object["spec"].(map[string]interface{})["ports"].([]interface{})[0]
    			apVal, found, _ := tpath.GetFromStructPath(val, "appProtocol")
    			if !tt.expectExist {
    				assert.Equal(t, found, false)
    			} else {
    				if apVal != nil {
    					assert.Equal(t, apVal.(string), tt.expectValue)
    				} else {
    					assert.Equal(t, "", tt.expectValue)
    				}
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/cmd/cover/cover.go

    	}
    
    	// Must either display a profile or rewrite Go source.
    	if (profile == "") == (*mode == "") {
    		return fmt.Errorf("too many options")
    	}
    
    	if *varVar != "" && !token.IsIdentifier(*varVar) {
    		return fmt.Errorf("-var: %q is not a valid identifier", *varVar)
    	}
    
    	if *mode != "" {
    		switch *mode {
    		case "set":
    			counterStmt = setCounterStmt
    			cmode = coverage.CtrModeSet
    		case "count":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGeneratorTest.groovy

    class InstrumentedPropertiesResourceGeneratorTest extends InstrumentationCodeGenTest {
    
        private static final ObjectMapper MAPPER = new ObjectMapper()
    
        def "should generate a resource with upgraded properties sorted alphabetically"() {
            given:
            def givenSource = source """
                package org.gradle.test;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top