Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 159 for Versioned (0.1 sec)

  1. test-site/activator

      echo a valid Java Runtime and install before running Activator.
      echo
      exit 1
    fi
    
    # if configuration files exist, prepend their contents to the java args so it can be processed by this runner
    # a "versioned" config trumps one on the top level
    if [[ -f "$java_opts_config_version" ]]; then
      addConfigOpts $(loadConfigFile "$java_opts_config_version")
    elif [[ -f "$java_opts_config_home" ]]; then
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    		dmVersionID := ""
    		versionID := ""
    		if objInfo.DeleteMarker {
    			dmVersionID = objInfo.VersionID
    		} else {
    			versionID = objInfo.VersionID
    		}
    		dobj := DeletedObjectReplicationInfo{
    			DeletedObject: DeletedObject{
    				ObjectName:            object,
    				VersionID:             versionID,
    				DeleteMarkerVersionID: dmVersionID,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Oct 05 05:16:15 UTC 2024
    - 117.4K bytes
    - Viewed (0)
  3. manifests/charts/README.md

    # Istio Installer
    
    ## WARNING: Do not use the files in this directory to install Istio
    
    This directory contains the helm chart _sources_ which are versioned, built and pushed to following helm
    repositories with each Istio release.  If you want to make changes to Istio helm charts, you're in the
    right place.
    
    If you want to _install_ Istio with Helm, instead please [follow the Helm installation docs here](https://istio.io/latest/docs/setup/install/helm/).
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 31 16:56:50 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. cmd/bucket-handlers.go

    					Key:       object.ObjectName,
    					VersionID: object.VersionID,
    				}
    				continue
    			}
    		}
    
    		opts := ObjectOptions{
    			VersionID:        object.VersionID,
    			Versioned:        vc.PrefixEnabled(object.ObjectName),
    			VersionSuspended: vc.Suspended(),
    		}
    
    		if replicateDeletes || object.VersionID != "" && hasLockEnabled || !globalTierConfigMgr.Empty() {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 12:24:04 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  5. cmd/storage-datatypes_gen.go

    		if err != nil {
    			err = msgp.WrapError(err, "Checksum")
    			return
    		}
    		if z.Checksum == nil {
    			z.Checksum = make([]byte, 0)
    		}
    	}
    	z.Versioned, err = dc.ReadBool()
    	if err != nil {
    		err = msgp.WrapError(err, "Versioned")
    		return
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z *FileInfo) EncodeMsg(en *msgp.Writer) (err error) {
    	// array header, size 28
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 150.2K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/api/networking/v1alpha3"
    	typev1beta1 "istio.io/api/type/v1beta1"
    	clientnetworking "istio.io/client-go/pkg/apis/networking/v1"
    	istioclient "istio.io/client-go/pkg/clientset/versioned"
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/clioptions"
    	"istio.io/istio/istioctl/pkg/completion"
    	istioctlutil "istio.io/istio/istioctl/pkg/util"
    	"istio.io/istio/istioctl/pkg/util/configdump"
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 24 17:36:49 UTC 2024
    - 50.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional int32 nanos = 2;
    }
    
    // TypeMeta describes an individual object in an API response or request
    // with strings representing the type of the object and its API schema version.
    // Structures that are versioned or persisted should inline TypeMeta.
    //
    // +k8s:deepcopy-gen=false
    message TypeMeta {
      // Kind is a string value representing the REST resource this object represents.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.5.md

    * Add port forwarding for rkt with kvm stage1 ([#32126](https://github.com/kubernetes/kubernetes/pull/32126), [@jjlakis](https://github.com/jjlakis))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2.go

    func (j xlMetaV2DeleteMarker) ToFileInfo(volume, path string) (FileInfo, error) {
    	versionID := ""
    	var uv uuid.UUID
    	// check if the version is not "null"
    	if j.VersionID != uv {
    		versionID = uuid.UUID(j.VersionID).String()
    	}
    	fi := FileInfo{
    		Volume:    volume,
    		Name:      path,
    		ModTime:   time.Unix(0, j.ModTime).UTC(),
    		VersionID: versionID,
    		Deleted:   true,
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 64K bytes
    - Viewed (1)
  10. CHANGELOG/CHANGELOG-1.3.md

    * Networking e2es: Wait for all nodes to be schedulable in kubeproxy and networking tests ([#27008](https://github.com/kubernetes/kubernetes/pull/27008), [@zmerlynn](https://github.com/zmerlynn))
    * change clientset of service controller to versioned ([#26694](https://github.com/kubernetes/kubernetes/pull/26694), [@mfanjie](https://github.com/mfanjie))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top