Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for volerr (0.12 sec)

  1. cni/pkg/plugin/sidecar_redirect.go

    			"excludeIPCidrs", isFound, valErr)
    	}
    	isFound, redir.excludeInboundPorts, valErr = getAnnotationOrDefault("excludeInboundPorts", pi.Annotations)
    	if valErr != nil {
    		return nil, fmt.Errorf("annotation value error for value %s; annotationFound = %t: %v",
    			"excludeInboundPorts", isFound, valErr)
    	}
    	isFound, redir.includeInboundPorts, valErr = getAnnotationOrDefault("includeInboundPorts", pi.Annotations)
    	if valErr != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. operator/pkg/tpath/tree_test.go

    			if err := yaml.Unmarshal([]byte(rootYAML), &root); err != nil {
    				t.Fatal(err)
    			}
    			pc, gotFound, gotErr := GetPathContext(root, util.PathFromString(tt.path), false)
    			if gotErr, wantErr := errToString(gotErr), tt.wantErr; gotErr != wantErr {
    				t.Fatalf("GetPathContext(%s): gotErr:%s, wantErr:%s", tt.desc, gotErr, wantErr)
    			}
    			if gotFound != tt.wantFound {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  3. docs/fr/docs/tutorial/query-params-str-validations.md

    ```
    
    ## Utiliser `Query` comme valeur par défaut
    
    Construisez ensuite la valeur par défaut de votre paramètre avec `Query`, en choisissant 50 comme `max_length` :
    
    ```Python hl_lines="9"
    {!../../../docs_src/query_params_str_validations/tutorial002.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:53:21 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. cmd/peer-s3-client.go

    			}
    		}
    		poolErr := reduceWriteQuorumErrs(ctx, perPoolErrs, bucketOpIgnoredErrs, len(perPoolErrs)/2+1)
    		if poolErr != nil && !errors.Is(poolErr, errVolumeNotFound) {
    			if !opts.NoRecreate {
    				// re-create successful deletes, since we are return an error.
    				sys.MakeBucket(ctx, bucket, MakeBucketOptions{})
    			}
    			return toObjectErr(poolErr, bucket)
    		}
    	}
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/cache/desired_state_of_world_test.go

    			volumeName,
    			nodeName)
    	}
    
    	// Act
    	generatedVolumeName, podErr := dsw.AddPod(types.UniquePodName(podName), controllervolumetesting.NewPod(podName, podName), volumeSpec, nodeName)
    
    	// Assert
    	if podErr != nil {
    		t.Fatalf("AddPod failed. Expected: <no error> Actual: <%v>", podErr)
    	}
    
    	volumeExists = dsw.VolumeExists(generatedVolumeName, nodeName)
    	if !volumeExists {
    		t.Fatalf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  6. operator/pkg/patch/patch_test.go

    			}
    			got, err := YAMLManifestPatch(base, "istio-system", rc.Overlays)
    			if gotErr, wantErr := errToString(err), tt.wantErr; gotErr != wantErr {
    				t.Fatalf("YAMLManifestPatch(%s): gotErr:%s, wantErr:%s", tt.desc, gotErr, wantErr)
    			}
    			if want := tt.want; !util.IsYAMLEqual(got, want) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  7. operator/pkg/translate/translate_value_test.go

    				t.Fatalf("unmarshal(%s): got error %s", tt.desc, err)
    			}
    			gotSpec, err := tr.TranslateFromValueToSpec([]byte(tt.valueYAML), false)
    			if gotErr, wantErr := errToString(err), tt.wantErr; gotErr != wantErr {
    				t.Errorf("ValuesToProto(%s)(%v): gotErr:%s, wantErr:%s", tt.desc, tt.valueYAML, gotErr, wantErr)
    			}
    			if tt.wantErr == "" {
    				byteArray, err := protomarshal.Marshal(gotSpec)
    				if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. src/io/io_test.go

    		for _, whence := range []int{-3, -2, -1, 3, 4, 5} {
    			var offset int64 = 0
    			gotOff, gotErr := w.Seek(offset, whence)
    			if gotOff != 0 || gotErr != ErrWhence {
    				t.Errorf("For whence %d, offset %d, OffsetWriter.Seek got: (%d, %v), want: (%d, %v)",
    					whence, offset, gotOff, gotErr, 0, ErrWhence)
    			}
    		}
    	})
    
    	// Should throw error errOffset if offset is negative
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. pkg/wasm/convert_test.go

    					t.Errorf("wasm config conversion output index %d got %v want %v", i, ec, c.wantOutput[i])
    				}
    			}
    			if c.wantErr && gotErr == nil {
    				t.Error("wasm config conversion fails to raise an error")
    			} else if !c.wantErr && gotErr != nil {
    				t.Errorf("wasm config conversion got unexpected error: %v", gotErr)
    			}
    		})
    	}
    }
    
    func buildTypedStructExtensionConfig(name string, wasm *wasm.Wasm) *core.TypedExtensionConfig {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_mounter.go

    	)
    
    	switch {
    	case volSrc != nil:
    		if c.volumeLifecycleMode != storage.VolumeLifecycleEphemeral {
    			return fmt.Errorf("unexpected volume mode: %s", c.volumeLifecycleMode)
    		}
    		if volSrc.FSType != nil {
    			fsType = *volSrc.FSType
    		}
    
    		volAttribs = volSrc.VolumeAttributes
    
    		if volSrc.NodePublishSecretRef != nil {
    			secretName := volSrc.NodePublishSecretRef.Name
    			ns := c.pod.Namespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
Back to top