Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,311 for modes (0.09 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/encode_test.go

    			assertOnError: assertNilError,
    		},
    	} {
    		encModes := tc.modes
    		if len(encModes) == 0 {
    			encModes = allEncModes
    		}
    
    		for _, encMode := range encModes {
    			modeName, ok := encModeNames[encMode]
    			if !ok {
    				t.Fatal("test case configured to run against unrecognized mode")
    			}
    
    			t.Run(fmt.Sprintf("mode=%s/%s", modeName, tc.name), func(t *testing.T) {
    				out, err := encMode.Marshal(tc.in)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/verification/DependencyVerificationMode.java

     */
    package org.gradle.api.artifacts.verification;
    
    /**
     * The different dependency verification modes. By default, Gradle
     * will use the strict mode, which means that it will verify dependencies
     * and fail <i>as soon as possible</i>, to avoid as much compromising of
     * the builds as possible.
     *
     * There are, however, two additional modes which can be used: the lenient
     * one will collect all errors but only log them to the CLI. This is useful
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 19:10:41 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_util.go

    	return filepath.Join(getVolumePluginDir(specVolID, host), "data")
    }
    
    // hasReadWriteOnce returns true if modes contains v1.ReadWriteOnce
    func hasReadWriteOnce(modes []api.PersistentVolumeAccessMode) bool {
    	if modes == nil {
    		return false
    	}
    	for _, mode := range modes {
    		if mode == api.ReadWriteOnce {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 17:14:00 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. releasenotes/notes/33405.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 33405
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 21:32:10 UTC 2021
    - 229 bytes
    - Viewed (0)
  5. pkg/volume/downwardapi/downwardapi_test.go

    	defaultMode := int32(0644)
    	var files []v1.DownwardAPIVolumeFile
    	for path, fieldPath := range volumeFiles {
    		file := v1.DownwardAPIVolumeFile{
    			Path: path,
    			FieldRef: &v1.ObjectFieldSelector{
    				FieldPath: fieldPath,
    			},
    		}
    		if mode, found := modes[path]; found {
    			file.Mode = &mode
    		}
    		files = append(files, file)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 04:48:49 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/Files.java

        private final File file;
        private final ImmutableSet<FileWriteMode> modes;
    
        private FileByteSink(File file, FileWriteMode... modes) {
          this.file = checkNotNull(file);
          this.modes = ImmutableSet.copyOf(modes);
        }
    
        @Override
        public FileOutputStream openStream() throws IOException {
          return new FileOutputStream(file, modes.contains(APPEND));
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. releasenotes/notes/filter-order.yaml

          This change impacts internal implementation of how Envoy "filters" are ordered. These filters run in order to implement various functionality.
          
          The ordering is now consistent across inbound, outbound and gateway proxy modes, as well as HTTP and TCP protocols:
          
          * Metadata Exchange
          * CUSTOM Authz
          * WASM Authn
          * Authn
          * WASM Authz
          * Authz
          * WASM Stats
          * Stats
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 18:28:50 UTC 2023
    - 895 bytes
    - Viewed (0)
  8. pkg/proxy/apis/config/types.go

    	PortRange string
    }
    
    // ProxyMode represents modes used by the Kubernetes proxy server.
    //
    // Currently, three modes of proxy are available on Linux platforms: 'iptables', 'ipvs',
    // and 'nftables'. One mode of proxy is available on Windows platforms: 'kernelspace'.
    //
    // If the proxy mode is unspecified, the best-available proxy mode will be used (currently this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/plan9/const_plan9.go

    package plan9
    
    // Plan 9 Constants
    
    // Open modes
    const (
    	O_RDONLY  = 0
    	O_WRONLY  = 1
    	O_RDWR    = 2
    	O_TRUNC   = 16
    	O_CLOEXEC = 32
    	O_EXCL    = 0x1000
    )
    
    // Rfork flags
    const (
    	RFNAMEG  = 1 << 0
    	RFENVG   = 1 << 1
    	RFFDG    = 1 << 2
    	RFNOTEG  = 1 << 3
    	RFPROC   = 1 << 4
    	RFMEM    = 1 << 5
    	RFNOWAIT = 1 << 6
    	RFCNAMEG = 1 << 10
    	RFCENVG  = 1 << 11
    	RFCFDG   = 1 << 12
    	RFREND   = 1 << 13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1004 bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/FileWriteMode.java

     * the License.
     */
    
    package com.google.common.io;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    
    /**
     * Modes for opening a file for writing. The default when mode when none is specified is to truncate
     * the file before writing.
     *
     * @author Colin Decker
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top