Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 114 for regular (0.19 sec)

  1. src/runtime/coro.go

    }
    
    // coroswitch_m is the implementation of coroswitch
    // that runs on the m stack.
    //
    // Note: Coroutine switches are expected to happen at
    // an order of magnitude (or more) higher frequency
    // than regular goroutine switches, so this path is heavily
    // optimized to remove unnecessary work.
    // The fast path here is three CAS: the one at the top on gp.atomicstatus,
    // the one in the middle to choose the next g,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java

     * they are thin wrapper around {@link java.util.Collections#emptySet()}, {@link
     * Collections#singleton(Object)} and {@link java.util.LinkedHashSet} for empty, singleton and
     * regular sets respectively. For the sorted sets, it's a thin wrapper around {@link
     * java.util.TreeSet}.
     *
     * @see ImmutableSortedSet
     * @author Hayward Chan
     */
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    	}
    	if obj.Etcd.Local != nil {
    		if obj.Etcd.Local.DataDir == "" {
    			obj.Etcd.Local.DataDir = DefaultEtcdDataDir
    		}
    	}
    }
    
    // SetDefaults_JoinConfiguration assigns default values to a regular node
    func SetDefaults_JoinConfiguration(obj *JoinConfiguration) {
    	if obj.CACertPath == "" {
    		obj.CACertPath = DefaultCACertPath
    	}
    
    	SetDefaults_JoinControlPlane(obj.ControlPlane)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. pkg/controller/job/backoff_utils.go

    		// We need to check InitContainerStatuses here also,
    		// because with the sidecar (restartable init) containers,
    		// sidecar containers will always finish later than regular containers.
    		names := sets.New[string]()
    		for _, c := range p.Spec.InitContainers {
    			if c.RestartPolicy != nil && *c.RestartPolicy == v1.ContainerRestartPolicyAlways {
    				names.Insert(c.Name)
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. cni/pkg/install/cniconfig.go

    	}
    
    	delete(istioMap, "cniVersion")
    
    	var newMap map[string]any
    
    	if _, ok := existingMap["type"]; ok {
    		// Assume it is a regular network conf file
    		delete(existingMap, "cniVersion")
    
    		plugins := make([]map[string]any, 2)
    		plugins[0] = existingMap
    		plugins[1] = istioMap
    
    		newMap = map[string]any{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

     *
     * Although this can be viewed as a flexible type (kotlin.Nothing..kotlin.Any?), a platform may assign special meaning to the
     * values of dynamic type, and handle differently from the regular flexible type.
     */
    public abstract class KaDynamicType : KaType
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/net/http/export_test.go

    	for _, pcs := range tr.idleConn {
    		for _, pc := range pcs {
    			pc.conn.Close()
    		}
    	}
    	tr.idleMu.Unlock()
    }
    
    // ResponseWriterConnForTesting returns w's underlying connection, if w
    // is a regular *response ResponseWriter.
    func ResponseWriterConnForTesting(w ResponseWriter) (c net.Conn, ok bool) {
    	if r, ok := w.(*response); ok {
    		return r.conn.rwc, true
    	}
    	return nil, false
    }
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. internal/bucket/replication/replication.go

    			case obj.VersionID != "":
    				// check MinIO extension for versioned deletes
    				return rule.DeleteReplication.Status == Enabled
    			default:
    				return rule.DeleteMarkerReplication.Status == Enabled
    			}
    		} // regular object/metadata replication
    		return rule.MetadataReplicate(obj)
    	}
    	return false
    }
    
    // HasActiveRules - returns whether replication policy has active rules
    // Optionally a prefix can be supplied.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/html/template/doc.go

    	tmpl.Execute(out, template.HTML(`<b>World</b>`))
    
    to produce
    
    	Hello, <b>World</b>!
    
    instead of the
    
    	Hello, &lt;b&gt;World&lt;b&gt;!
    
    that would have been produced if {{.}} was a regular string.
    
    # Security Model
    
    https://rawgit.com/mikesamuel/sanitized-jquery-templates/trunk/safetemplate.html#problem_definition defines "safe" as used by this package.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. src/testing/fstest/mapfs.go

    func (i *mapFileInfo) Info() (fs.FileInfo, error) { return i, nil }
    
    func (i *mapFileInfo) String() string {
    	return fs.FormatFileInfo(i)
    }
    
    // An openMapFile is a regular (non-directory) fs.File open for reading.
    type openMapFile struct {
    	path string
    	mapFileInfo
    	offset int64
    }
    
    func (f *openMapFile) Stat() (fs.FileInfo, error) { return &f.mapFileInfo, nil }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top