Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for Backward (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    func (c *Cacher) Get(ctx context.Context, key string, opts storage.GetOptions, objPtr runtime.Object) error {
    	if opts.ResourceVersion == "" {
    		// If resourceVersion is not specified, serve it from underlying
    		// storage (for backward compatibility).
    		return c.storage.Get(ctx, key, opts, objPtr)
    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    		if !c.ready.check() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                    spaceChars = split(spaceStr, "u")
                            .get(stream -> stream.filter(StringUtil::isNotBlank).mapToInt(s -> Integer.parseInt(s, 16)).toArray());
                } else {
                    // backward compatibility
                    final int length = spaceStr.length();
                    spaceChars = new int[length];
                    for (int i = 0; i < length; i++) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // this service.
      // +optional
      optional string path = 3;
    
      // If specified, the port on the service that hosting webhook.
      // Default to 443 for backward compatibility.
      // `port` should be a valid port number (1-65535, inclusive).
      // +optional
      optional int32 port = 4;
    }
    
    // TypeChecking contains results of type checking the expressions in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    	if !ok {
    		// If interface EnqueueExtensions is not implemented, register the default enqueue extensions
    		// to the plugin because we don't know which events the plugin is interested in.
    		// This is to ensure backward compatibility.
    		f.enqueueExtensions = append(f.enqueueExtensions, &defaultEnqueueExtension{pluginName: p.Name()})
    		return
    	}
    
    	f.enqueueExtensions = append(f.enqueueExtensions, ext)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    			return nil
    		}
    
    		mode := info.Mode()
    		if mode&0222 != 0 && (mode.IsDir() || mode.IsRegular()) {
    			dirs = append(dirs, pathMode{path, mode})
    		}
    		return nil
    	})
    
    	// Run over list backward to chmod children before parents.
    	for i := len(dirs) - 1; i >= 0; i-- {
    		err := os.Chmod(dirs[i].path, dirs[i].mode&^0222)
    		if err != nil {
    			dirs = dirs[i:] // Only undo what we did so far.
    			undo()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // this service.
      // +optional
      optional string path = 3;
    
      // If specified, the port on the service that hosting webhook.
      // Default to 443 for backward compatibility.
      // `port` should be a valid port number (1-65535, inclusive).
      // +optional
      optional int32 port = 4;
    }
    
    // TypeChecking contains results of type checking the expressions in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/time/time_test.go

    		// 15 Sep 1991 - Daylight Saving Time Ended
    		// When local daylight time of "Asia/Shanghai" was about to reach
    		// Sunday, 15 September 1991, 02:00:00 clocks were turned backward 1 hour to
    		// Sunday, 15 September 1991, 01:00:00 local standard time instead.
    		// The UTC time was 14 September 1991, 17:00:00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. cmd/iam.go

    		} else {
    			// We use the group DN returned by the LDAP server (this may not
    			// equal the input group name, but we assume it is canonical).
    			dn = dnResult.NormDN
    		}
    		isGroup = true
    	}
    
    	// Backward compatibility in detaching non-normalized DNs.
    	if !isAttach {
    		var oldDN string
    		if isGroup {
    			oldDN = r.Group
    		} else {
    			oldDN = r.User
    		}
    		if oldDN != dn {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      //   when request started being processed.
      // - `resourceVersionMatch` set to any other value or unset
      //   Invalid error is returned.
      //
      // Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward
      // compatibility reasons) and to false otherwise.
      // +optional
      optional bool sendInitialEvents = 11;
    }
    
    // ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// this service.
    	// +optional
    	Path *string `json:"path,omitempty" protobuf:"bytes,3,opt,name=path"`
    
    	// If specified, the port on the service that hosting webhook.
    	// Default to 443 for backward compatibility.
    	// `port` should be a valid port number (1-65535, inclusive).
    	// +optional
    	Port *int32 `json:"port,omitempty" protobuf:"varint,4,opt,name=port"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top