Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for empty (0.19 sec)

  1. buildscripts/verify-healing-empty-erasure-set.sh

    Anis Eleuch <******@****.***> 1714082141 +0100
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:55:41 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/bytes/buffer_test.go

    }
    
    // Empty buf through repeated reads into fub.
    // The initial contents of buf corresponds to the string s.
    func empty(t *testing.T, testname string, buf *Buffer, s string, fub []byte) {
    	check(t, testname+" (empty 1)", buf, s)
    
    	for {
    		n, err := buf.Read(fub)
    		if n == 0 {
    			break
    		}
    		if err != nil {
    			t.Errorf(testname+" (empty 2): err should always be nil, found err == %s", err)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 13:31:36 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  3. errors.go

    	// ErrRegistered registered
    	ErrRegistered = errors.New("registered")
    	// ErrInvalidField invalid field
    	ErrInvalidField = errors.New("invalid field")
    	// ErrEmptySlice empty slice found
    	ErrEmptySlice = errors.New("empty slice found")
    	// ErrDryRunModeUnsupported dry run mode unsupported
    	ErrDryRunModeUnsupported = errors.New("dry run mode unsupported")
    	// ErrInvalidDB invalid db
    	ErrInvalidDB = errors.New("invalid db")
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Fri Apr 26 02:53:17 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  4. .github/workflows/iam-integrations.yaml

            env:
              DEX_LDAP_SERVER: "openldap:389"
              DEX_ISSUER: "http://127.0.0.1:5557/dex"
              DEX_WEB_HTTP: "0.0.0.0:5557"
    
        strategy:
          # When ldap, etcd or openid vars are empty below, those external servers
          # are turned off - i.e. if ldap="", then ldap server is not enabled for
          # the tests.
          matrix:
            go-version: [1.21.x]
            ldap: ["", "localhost:389"]
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:49:53 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  5. helm/minio/templates/service.yaml

      loadBalancerSourceRanges: {{ .Values.service.loadBalancerSourceRanges }}
      {{ end }}
      {{- if and (eq .Values.service.type "LoadBalancer") (not (empty .Values.service.loadBalancerIP)) }}
      loadBalancerIP: {{ default "" .Values.service.loadBalancerIP | quote }}
      {{- end }}
      ports:
        - name: {{ $scheme }}
          port: {{ .Values.service.port }}
          protocol: TCP
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 10:05:53 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java

                return Optional.empty();
            }
            JApiMethod jApiMethod = (JApiMethod) jApiCompatibility;
            Map<AccessorKey, ReplacedAccessor> oldMethods = context.getUserData(OLD_ACCESSORS_OF_UPGRADED_PROPERTIES);
            AccessorKey key = AccessorKey.ofOldMethod(jApiMethod);
            return oldMethods.containsKey(key) ? Optional.of(key) : Optional.empty();
        }
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-v2.go

    	}
    	updateVersion := false
    	if fi.VersionPurgeStatus().Empty() && (fi.DeleteMarkerReplicationStatus() == "REPLICA" || fi.DeleteMarkerReplicationStatus().Empty()) {
    		updateVersion = fi.MarkDeleted
    	} else {
    		// for replication scenario
    		if fi.Deleted && fi.VersionPurgeStatus() != Complete {
    			if !fi.VersionPurgeStatus().Empty() || fi.DeleteMarkerReplicationStatus().Empty() {
    				updateVersion = true
    			}
    		}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  8. helm/minio/templates/console-service.yaml

      loadBalancerSourceRanges: {{ .Values.consoleService.loadBalancerSourceRanges }}
      {{ end }}
      {{- if and (eq .Values.consoleService.type "LoadBalancer") (not (empty .Values.consoleService.loadBalancerIP)) }}
      loadBalancerIP: {{ .Values.consoleService.loadBalancerIP }}
      {{- end }}
      ports:
        - name: {{ $scheme }}
          port: {{ .Values.consoleService.port }}
          protocol: TCP
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 10:05:53 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

                        return Optional.empty();
                    }
                }
    
                @Override
                public <T> Optional<T> lookupOptional(Class<T> type, String name) {
                    try {
                        return Optional.of(injector.getInstance(Key.of(type, name)));
                    } catch (DIException e) {
                        return Optional.empty();
                    }
                }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  10. cmd/iam-store.go

    					return nil, time.Time{}, err
    				}
    				mp, _ = c.iamSTSPolicyMap.Load(name)
    			}
    		}
    	}
    
    	// returned policy could be empty
    	policies := mp.toSlice()
    
    	for _, group := range c.iamUserGroupMemberships[name].ToSlice() {
    		if store.getUsersSysType() == MinIOUsersSysType {
    			g, ok := c.iamGroupsMap[group]
    			if !ok {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
Back to top