Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for isRemove (0.35 sec)

  1. pkg/proxy/winkernel/hns.go

    		return nil, err
    	}
    	return &endpointInfo{ //TODO: fill out PA
    		ip:         hnsendpoint.IpConfigurations[0].IpAddress,
    		isLocal:    uint32(hnsendpoint.Flags&hcn.EndpointFlagsRemoteEndpoint) == 0, //TODO: Change isLocal to isRemote
    		macAddress: hnsendpoint.MacAddress,
    		hnsID:      hnsendpoint.Id,
    		hns:        hns,
    	}, nil
    }
    func (hns hns) getEndpointByIpAddress(ip string, networkName string) (*endpointInfo, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. cmd/erasure-healing.go

    			// Legacy means heal always
    			// always check first.
    			return true, errLegacyXLMeta
    		}
    		if !latestMeta.Equals(meta) {
    			return true, errOutdatedXLMeta
    		}
    		if !meta.Deleted && !meta.IsRemote() {
    			// If xl.meta was read fine but there may be problem with the part.N files.
    			for _, partErr := range partsErrs {
    				if slices.Contains([]int{
    					checkPartFileNotFound,
    					checkPartFileCorrupt,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultFileChange.java

            return change == ChangeTypeInternal.ADDED;
        }
    
        @Override
        public boolean isModified() {
            return change == ChangeTypeInternal.MODIFIED;
        }
    
        @Override
        public boolean isRemoved() {
            return change == ChangeTypeInternal.REMOVED;
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. pkg/test/framework/components/cluster/clusters.go

    	}, exclude(excluded...))
    }
    
    // Remotes returns the subset that are remote clusters.
    func (c Clusters) Remotes(excluded ...Cluster) Clusters {
    	return c.filterClusters(func(cc Cluster) bool {
    		return cc.IsRemote()
    	}, exclude(excluded...))
    }
    
    // MeshClusters returns the subset that are not external control plane clusters.
    func (c Clusters) MeshClusters(excluded ...Cluster) Clusters {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. cmd/bucket-lifecycle.go

    }
    
    var errRestoreHDRMalformed = fmt.Errorf("x-amz-restore header malformed")
    
    // IsRemote returns true if this object version's contents are in its remote
    // tier.
    func (fi FileInfo) IsRemote() bool {
    	if fi.TransitionStatus != lifecycle.TransitionComplete {
    		return false
    	}
    	return !isRestoredObjectOnDisk(fi.Metadata)
    }
    
    // IsRemote returns true if this object version's contents are in its remote
    // tier.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. cmd/api-headers.go

    	}
    
    	if objInfo.ReplicationStatus.String() != "" {
    		w.Header()[xhttp.AmzBucketReplicationStatus] = []string{objInfo.ReplicationStatus.String()}
    	}
    
    	if objInfo.IsRemote() {
    		// Check if object is being restored. For more information on x-amz-restore header see
    		// https://docs.aws.amazon.com/AmazonS3/latest/API/API_HeadObject.html#API_HeadObject_ResponseSyntax
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 04:44:00 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. cmd/erasure-healing-common.go

    				dataErrsByPart[p][i] = partErr
    			}
    		}
    	}
    
    	for i, onlineDisk := range onlineDisks {
    		if metaErrs[i] != nil {
    			continue
    		}
    		meta := partsMetadata[i]
    
    		if meta.Deleted || meta.IsRemote() {
    			continue
    		}
    
    		// Always check data, if we got it.
    		if (len(meta.Data) > 0 || meta.Size == 0) && len(meta.Parts) > 0 {
    			checksumInfo := meta.Erasure.GetChecksumInfo(meta.Parts[0].Number)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/configmap.go

    			if err != nil {
    				return err
    			}
    
    			cfgMap, err := mc.getConfigMap(c, cfgMapName)
    			if err != nil {
    				// Remote clusters typically don't have mesh config, allow it to skip
    				if c.IsRemote() && kerrors.IsNotFound(err) {
    					scopes.Framework.Infof("skipped %s meshconfig patch, as it is a remote", c.Name())
    					return nil
    				}
    				return err
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. cmd/storage-datatypes.go

    	// from fi.Metadata when the object was tiered. So, tiered objects
    	// would return true for InlineData() in these versions even though the
    	// object isn't inlined in xl.meta
    	return ok && !fi.IsRemote()
    }
    
    // SetInlineData marks object (version) as inline.
    func (fi *FileInfo) SetInlineData() {
    	if fi.Metadata == nil {
    		fi.Metadata = make(map[string]string, 1)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. cmd/erasure-metadata.go

    			}
    
    			if !meta.Deleted && meta.Size != 0 {
    				fmt.Fprintf(h, "%v+%v", meta.Erasure.DataBlocks, meta.Erasure.ParityBlocks)
    				fmt.Fprintf(h, "%v", meta.Erasure.Distribution)
    			}
    
    			if meta.IsRemote() {
    				// ILM transition fields
    				fmt.Fprint(h, meta.TransitionStatus)
    				fmt.Fprint(h, meta.TransitionTier)
    				fmt.Fprint(h, meta.TransitionedObjName)
    				fmt.Fprint(h, meta.TransitionVersionID)
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top