Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 100 for ulong (0.13 sec)

  1. pkg/config/validation/validation_test.go

    				Url:    "http://test.com/test",
    				Sha256: "01ba47",
    			},
    			"sha256 field must be 64 characters long", "",
    		},
    		{
    			"invalid sha",
    			&extensions.WasmPlugin{
    				Url:    "http://test.com/test",
    				Sha256: "test",
    			},
    			"sha256 field must be 64 characters long", "",
    		},
    		{
    			"invalid sha characters",
    			&extensions.WasmPlugin{
    				Url:    "http://test.com/test",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    	// Generates the volume file system resize function, which can resize volume's file system to expected size without unmounting the volume.
    	// Along with volumeToMount and actualStateOfWorld, the function expects current size of volume on the node as an argument. The current
    	// size here always refers to capacity last recorded in actualStateOfWorld from pvc.Status.Capacity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    		return fmt.Errorf("Get #2 got %q, %v, want %q, nil", string(got), err, expected)
    	}
    
    	if !testing.Short() {
    		conn, err := net.Dial("tcp", ts.Listener.Addr().String())
    		if err != nil {
    			return fmt.Errorf("long Dial: %v", err)
    		}
    		defer conn.Close()
    		go io.Copy(io.Discard, conn)
    		for i := 0; i < 5; i++ {
    			_, err := conn.Write([]byte("GET / HTTP/1.1\r\nHost: foo\r\n\r\n"))
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    				}
    				return nil
    			},
    		},
    		{
    			"consistent hash settings with RingHash with min ringsize size defined along with deprecated minring size",
    			&networking.LoadBalancerSettings{
    				LbPolicy: &networking.LoadBalancerSettings_ConsistentHash{
    					ConsistentHash: &networking.LoadBalancerSettings_ConsistentHashLB{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    	"encoding/base64"
    	"encoding/binary"
    	"encoding/json"
    	"encoding/xml"
    	"errors"
    	"fmt"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  6. pkg/apis/apps/validation/validation_test.go

    	}, {
    		name: "name-with-dots",
    		set:  mkStatefulSet(&validPodTemplate, tweakName("abc.123")),
    		errs: field.ErrorList{
    			field.Invalid(field.NewPath("metadata", "name"), "abc.123", ""),
    		},
    	}, {
    		name: "long name",
    		set:  mkStatefulSet(&validPodTemplate, tweakName(strings.Repeat("a", 64))),
    		errs: field.ErrorList{
    			field.Invalid(field.NewPath("metadata", "name"), strings.Repeat("a", 64), ""),
    		},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.cc

                                     export_dir, tag_set, &bundle);
      if (!status->status.ok()) return nullptr;
    
      // Create a TF_Graph from the MetaGraphDef. This is safe as long as Session
      // extends using GraphDefs. The Graph instance is different, but equivalent
      // to the one used to create the session.
      //
      // TODO(jhseu): When Session is modified to take Graphs instead of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. cmd/metrics-v2.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"fmt"
    	"math"
    	"net/http"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    			// we run the helper, but if we lose that race once in a while it's okay: the
    			// select will just proceed immediately. Not a big deal.
    			// For short tests we can grow [sic] the timeout a bit without fear of taking too long
    			pause := 10 * time.Microsecond
    			if testing.Short() {
    				pause = 100 * time.Microsecond
    			}
    			time.AfterFunc(pause, helper)
    		}
    
    		// Run select.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    sent values have been received, receive operations will return
    the zero value for the channel's type without blocking.
    The multi-valued <a href="#Receive_operator">receive operation</a>
    returns a received value along with an indication of whether the channel is closed.
    </p>
    
    
    <h3 id="Length_and_capacity">Length and capacity</h3>
    
    <p>
    The built-in functions <code>len</code> and <code>cap</code> take arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top