Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 75 for regular (0.15 sec)

  1. cmd/xl-storage.go

    	}
    
    	// Close the file descriptor.
    	defer file.Close()
    
    	st, err := file.Stat()
    	if err != nil {
    		return 0, err
    	}
    
    	// Verify it is a regular file, otherwise subsequent Seek is
    	// undefined.
    	if !st.Mode().IsRegular() {
    		return 0, errIsNotRegular
    	}
    
    	if verifier == nil {
    		n, err = file.ReadAt(buffer, offset)
    		return int64(n), err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  2. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    		return &v1.Pod{
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{Name: "regular"},
    				},
    			},
    		}
    	}
    	newPodWithRestartableInitContainers := func() *v1.Pod {
    		restartPolicyAlways := v1.ContainerRestartPolicyAlways
    		return &v1.Pod{
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{Name: "regular"},
    				},
    				InitContainers: []v1.Container{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    	}
    }
    
    // nftablesBaseChains lists our "base chains"; those that are directly connected to the
    // netfilter hooks (e.g., "postrouting", "input", etc.), as opposed to "regular" chains,
    // which are only run when a rule jumps to them. See
    // https://wiki.nftables.org/wiki-nftables/index.php/Configuring_chains.
    //
    // These are set up from setupNFTables() and then not directly referenced by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

       * | `http://a%20b:c%20d@host/`       | `"c d"`      |
       */
      @get:JvmName("password") val password: String,
      /**
       * The host address suitable for use with [InetAddress.getAllByName]. May be:
       *
       *  * A regular host name, like `android.com`.
       *
       *  * An IPv4 address, like `127.0.0.1`.
       *
       *  * An IPv6 address, like `::1`. Note that there are no square braces.
       *
       *  * An encoded IDN, like `xn--n3h.net`.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    }
    
    // AttrSubSymbol returns true for symbols that are listed as a
    // sub-symbol of some other outer symbol. The sub/outer mechanism is
    // used when loading host objects (sections from the host object
    // become regular linker symbols and symbols go on the Sub list of
    // their section) and for constructing the global offset table when
    // internally linking a dynamic executable.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    /* Lato (bold, regular) */
    @font-face {
    	font-display: swap;
    	font-family: Lato;
    	font-weight: 500;
    	font-style: normal;
    	src: url("https://assets.gradle.com/lato/fonts/lato-semibold/lato-semibold.woff2") format("woff2"),
    		url("https://assets.gradle.com/lato/fonts/lato-semibold/lato-semibold.woff") format("woff");
    }
    
    /* Lato (bold, regular) */
    @font-face {
    	font-display: swap;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    	flag.StringVar(&t.banner, "banner", "##### ", "banner prefix; blank means no section banners")
    	flag.StringVar(&t.runRxStr, "run", "",
    		"run only those tests matching the regular expression; empty means to run all. "+
    			"Special exception: if the string begins with '!', the match is inverted.")
    	flag.BoolVar(&t.msan, "msan", false, "run in memory sanitizer builder mode")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/go/printer/testdata/parser.go

    }
    
    func isExprSwitch(s ast.Stmt) bool {
    	if s == nil {
    		return true
    	}
    	if e, ok := s.(*ast.ExprStmt); ok {
    		if a, ok := e.X.(*ast.TypeAssertExpr); ok {
    			return a.Type != nil // regular type assertion
    		}
    		return true
    	}
    	return false
    }
    
    func (p *parser) parseSwitchStmt() ast.Stmt {
    	if p.trace {
    		defer un(trace(p, "SwitchStmt"))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// Most recently configured resources on the running container
    	currentContainerResources *containerResources
    }
    
    // podActions keeps information what to do for a pod.
    type podActions struct {
    	// Stop all running (regular, init and ephemeral) containers and the sandbox for the pod.
    	KillPod bool
    	// Whether need to create a new sandbox. If needed to kill pod and create
    	// a new pod sandbox, all init containers need to be purged (i.e., removed).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. src/net/netip/netip_test.go

    		// IPv4 in class B form
    		"192.168.12345",
    		// IPv4 in class B form, with a small enough number to be
    		// parseable as a regular dotted decimal field.
    		"127.0.1",
    		// IPv4 in class A form
    		"192.1234567",
    		// IPv4 in class A form, with a small enough number to be
    		// parseable as a regular dotted decimal field.
    		"127.1",
    		// IPv4 field has value >255
    		"192.168.300.1",
    		// IPv4 with too many fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top