Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for val32 (0.09 sec)

  1. pkg/scheduler/internal/heap/heap_test.go

    		*tmr = 0
    	}
    }
    
    func mkHeapObj(name string, val interface{}) testHeapObject {
    	return testHeapObject{name: name, val: val}
    }
    
    func compareInts(val1 interface{}, val2 interface{}) bool {
    	first := val1.(testHeapObject).val.(int)
    	second := val2.(testHeapObject).val.(int)
    	return first < second
    }
    
    // TestHeapBasic tests Heap invariant
    func TestHeapBasic(t *testing.T) {
    	h := New(testHeapObjectKeyFunc, compareInts)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if skip(s) {
    		return nil
    	}
    	val1 := s.Val1.Copy(fn, skip)
    	val2 := s.Val2.Copy(fn, skip)
    	if val1 == nil && val2 == nil {
    		return fn(s)
    	}
    	if val1 == nil {
    		val1 = s.Val1
    	}
    	if val2 == nil {
    		val2 = s.Val2
    	}
    	s = &Special2{Prefix: s.Prefix, Val1: val1, Middle: s.Middle, Val2: val2}
    	if r := fn(s); r != nil {
    		return r
    	}
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. docs/site-replication/run-multi-site-minio-idp.sh

    	echo "expected policy detach to have replicated, exiting..."
    	exit_1
    fi
    
    kill -9 ${site1_pid1} ${site1_pid2}
    
    # Update tag on minio2/newbucket when minio1 is down
    ./mc tag set minio2/newbucket "key=val2"
    # create a new bucket on minio2. This should replicate to minio1 after it comes online.
    ./mc mb minio2/newbucket2
    
    # delete bucket2 on minio2. This should replicate to minio1 after it comes online.
    ./mc rb minio2/bucket2
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_ppc64x.s

    	MOVW	R3, ret+24(FP)
    	RET
    
    // int64 futex(int32 *uaddr, int32 op, int32 val,
    //	struct timespec *timeout, int32 *uaddr2, int32 val2);
    TEXT runtime·futex(SB),NOSPLIT|NOFRAME,$0
    	MOVD	addr+0(FP), R3
    	MOVW	op+8(FP), R4
    	MOVW	val+12(FP), R5
    	MOVD	ts+16(FP), R6
    	MOVD	addr2+24(FP), R7
    	MOVW	val3+32(FP), R8
    	SYSCALL	$SYS_futex
    	BVC	2(PC)
    	NEG	R3	// caller expects negative errno
    	MOVW	R3, ret+40(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. src/net/http/cgi/host_test.go

    		"env-SCRIPT_FILENAME": os.Args[0],
    		"env-HTTP_COOKIE":     "nom=NOM; yum=YUM",
    		"env-HTTP_X_FOO":      "val1, val2",
    	}
    	runCgiTest(t, h, "GET /myscript/bar?a=b HTTP/1.0\n"+
    		"Cookie: nom=NOM\n"+
    		"Cookie: yum=YUM\n"+
    		"X-Foo: val1\n"+
    		"X-Foo: val2\n"+
    		"Host: example.com\n\n",
    		expectedMap)
    }
    
    // Issue 16405: CGI+http.Transport differing uses of HTTP_PROXY.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // CHECK-DAG:       [[VAL_5:%.*]] = "tfl.no_value"() <{value}> : () -> none
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_loong64.s

    	SYSCALL
    	MOVW	R4, ret+24(FP)
    	RET
    
    // func futex(addr unsafe.Pointer, op int32, val uint32, ts, addr2 unsafe.Pointer, val3 uint32) int32
    TEXT runtime·futex(SB),NOSPLIT|NOFRAME,$0
    	MOVV	addr+0(FP), R4
    	MOVW	op+8(FP), R5
    	MOVW	val+12(FP), R6
    	MOVV	ts+16(FP), R7
    	MOVV	addr2+24(FP), R8
    	MOVW	val3+32(FP), R9
    	MOVV	$SYS_futex, R11
    	SYSCALL
    	MOVW	R4, ret+40(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  8. tools/bug-report/pkg/bugreport/bugreport.go

    		Long: `bug-report selectively captures cluster information and logs into an archive to help diagnose problems.
    Proxy logs can be filtered using:
      --include|--exclude ns1,ns2.../dep1,dep2.../pod1,pod2.../lbl1=val1,lbl2=val2.../ann1=val1,ann2=val2.../cntr1,cntr...
    where ns=namespace, dep=deployment, lbl=label, ann=annotation, cntr=container
    
    The filter spec is interpreted as 'must be in (ns1 OR ns2) AND (dep1 OR dep2) AND (cntr1 OR cntr2)...'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		st.MakePod().Name("p1").Namespace("ns1").Annotation("annot", "val").Obj(),
    		st.MakePod().Name("p2").Namespace("ns2").Annotation("annot2", "val2").Annotation("annot3", "val3").NominatedNodeName("node3").Obj(),
    		st.MakePod().Name("p3").Namespace("ns4").Annotation("annot2", "val2").Annotation("annot3", "val3").NominatedNodeName("node1").Obj(),
    	}
    	var updatedPods = make([]*v1.Pod, len(pods))
    	updatedPods[0] = pods[0].DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. cmd/xl-storage-format_test.go

    	}
    	xlMeta.Stat = StatInfo{
    		Size:    int64(20),
    		ModTime: UTCNow(),
    	}
    	// Set meta data.
    	xlMeta.Meta = make(map[string]string)
    	xlMeta.Meta["testKey1"] = "val1"
    	xlMeta.Meta["testKey2"] = "val2"
    	return xlMeta
    }
    
    func (m *xlMetaV1Object) AddTestObjectCheckSum(partNumber int, algorithm BitrotAlgorithm, hash string) {
    	checksum, err := hex.DecodeString(hash)
    	if err != nil {
    		panic(err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top