Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for val6 (0.11 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

          "tf.Yield"(%false_value) : (tensor<f32>) -> ()
        }) { is_stateless = true}: (tensor<i1>) -> tensor<f32>
    
      // CHECK: return [[Val0]], [[Val1]]
      func.return %0, %1 : tensor<f32>, tensor<f32>
    }
    
    // CHECK-LABEL: foldIfRegionMismatchedTypes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_client_test.go

    		err := client.NodePublishVolume(
    			context.Background(),
    			tc.volID,
    			false,
    			"",
    			tc.targetPath,
    			api.ReadWriteOnce,
    			map[string]string{"device": "/dev/null"},
    			map[string]string{"attr0": "val0"},
    			map[string]string{},
    			tc.fsType,
    			[]string{},
    			tc.fsGroup,
    		)
    		checkErr(t, tc.mustFail, err)
    
    		volumeMountGroup := nodeClient.GetNodePublishedVolumes()[tc.volID].VolumeMountGroup
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. src/encoding/gob/encoder_test.go

    			}
    			continue
    		}
    		// Get rid of the pointer in the rhs
    		val := reflect.ValueOf(test.out).Elem().Interface()
    		if !reflect.DeepEqual(test.in, val) {
    			t.Errorf("decoding singleton: expected %v got %v", test.in, val)
    		}
    	}
    }
    
    func TestStructNonStruct(t *testing.T) {
    	type Struct struct {
    		A string
    	}
    	type NonStruct string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MOVHstoreidx  ptr (ADD      idx idx) val mem) => (MOVHstoreidx2 ptr idx val mem)
    (MOVDstoreidx  (SLLconst [3] idx) ptr val mem) => (MOVDstoreidx8 ptr idx val mem)
    (MOVWstoreidx  (SLLconst [2] idx) ptr val mem) => (MOVWstoreidx4 ptr idx val mem)
    (MOVHstoreidx  (SLLconst [1] idx) ptr val mem) => (MOVHstoreidx2 ptr idx val mem)
    (MOVHstoreidx  (ADD      idx idx) ptr val mem) => (MOVHstoreidx2 ptr idx val mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/manager_test.go

    	testManager.markResourceUnhealthy(resourceName2)
    	capacity, allocatable, removed = testManager.GetCapacity()
    	val, ok = capacity[v1.ResourceName(resourceName2)]
    	as.True(ok)
    	as.Equal(int64(3), val.Value())
    	val, ok = allocatable[v1.ResourceName(resourceName2)]
    	as.True(ok)
    	as.Equal(int64(0), val.Value())
    	as.Empty(removed)
    	// Writes and re-reads checkpoints. Verifies we create a stopped endpoint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar_test.go

    		}
    		setCookies[i] = cookies[0]
    	}
    	jar.setCookies(mustParseURL(test.fromURL), setCookies, now)
    	now = now.Add(1001 * time.Millisecond)
    
    	// Serialize non-expired entries in the form "name1=val1 name2=val2".
    	var cs []string
    	for _, submap := range jar.entries {
    		for _, cookie := range submap {
    			if !cookie.Expires.After(now) {
    				continue
    			}
    
    			v := cookie.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          if (!c->Dim(s0, i).SameHandle(c->Dim(s1, i))) {
            int64_t val0 = c->Value(c->Dim(s0, i));
            int64_t val1 = c->Value(c->Dim(s1, i));
            // Negative value is treated as unknown so all negative values indicate
            // the same dimension.
            if (val0 >= 0 && val1 >= 0 && val0 != val1) return false;
          }
        }
        return true;
      };
    
      bool changed = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      # flag arguments.
      # Old format:
      #   command=["/bin/sh", "-c", "exec KUBE_EXEC_BINARY --param1=val1 --param2-val2"].
      # New format:
      #   command=["KUBE_EXEC_BINARY"]  # No shell dependencies.
      #   args=["--param1=val1", "--param2-val2"]
      IFS=' ' read -ra FLAGS <<< "$1"
      params=""
      for flag in "${FLAGS[@]}"; do
        params+="\n\"$flag\","
      done
      if [ -n "$params" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. src/runtime/os_linux.go

    	for ; auxv[i] != _AT_NULL; i += 2 {
    		tag, val := auxv[i], auxv[i+1]
    		switch tag {
    		case _AT_RANDOM:
    			// The kernel provides a pointer to 16-bytes
    			// worth of random data.
    			startupRand = (*[16]byte)(unsafe.Pointer(val))[:]
    
    		case _AT_PAGESZ:
    			physPageSize = val
    
    		case _AT_SECURE:
    			secureMode = val == 1
    		}
    
    		archauxv(tag, val)
    		vdsoauxv(tag, val)
    	}
    	return i / 2
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top