Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 104 for type$val (0.22 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/sigchanyzer/sigchanyzer.go

    			if name.Obj == arg.Obj {
    				return as.Values[i]
    			}
    		}
    	}
    	return nil
    }
    
    func isBuiltinMake(info *types.Info, call *ast.CallExpr) bool {
    	typVal := info.Types[call.Fun]
    	if !typVal.IsBuiltin() {
    		return false
    	}
    	switch fun := call.Fun.(type) {
    	case *ast.Ident:
    		return info.ObjectOf(fun).Name() == "make"
    	default:
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    // this.super(p0 .. pn)
                    _ALOAD(0);
                    for (int typeVar = addNameParameter ? 1 : 0, stackVar = addNameParameter ? 2 : 1; typeVar < paramTypes.size(); ++typeVar) {
                        Type argType = paramTypes.get(typeVar);
                        _ILOAD_OF(argType, stackVar);
                        stackVar += argType.getSize();
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/defaults.go

    		obj.StorageMode = "ThinProvisioned"
    	}
    	if obj.FSType == "" {
    		obj.FSType = "xfs"
    	}
    }
    
    func SetDefaults_HostPathVolumeSource(obj *v1.HostPathVolumeSource) {
    	typeVol := v1.HostPathUnset
    	if obj.Type == nil {
    		obj.Type = &typeVol
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    						mf = deepCopyMetricFamily(mf)
    						renameMetric(mf, "grpc_server_handling_seconds")
    						tpeName := "grpc_type"
    						tpeVal := "unary"
    						for _, m := range mf.Metric {
    							m.Label = append(m.Label, &dto.LabelPair{Name: &tpeName, Value: &tpeVal})
    						}
    						return mf, nil
    					},
    				},
    			},
    			// etcd 3.1+ metric format for total grpc requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. pkg/apis/core/fuzzer/fuzzer.go

    				core.HostPathFileOrCreate, core.HostPathFile, core.HostPathSocket, core.HostPathCharDev, core.HostPathBlockDev}
    			typeVol := types[c.Rand.Intn(len(types))]
    			if obj.Type == nil {
    				obj.Type = &typeVol
    			}
    		},
    		func(pv *core.PersistentVolume, c fuzz.Continue) {
    			c.FuzzNoCustom(pv) // fuzz self without calling this function again
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    		return after[:n]
    	}
    	panic("missing package header: " + src)
    }
    
    func TestValuesInfo(t *testing.T) {
    	var tests = []struct {
    		src  string
    		expr string // constant expression
    		typ  string // constant type
    		val  string // constant value
    	}{
    		{`package a0; const _ = false`, `false`, `untyped bool`, `false`},
    		{`package a1; const _ = 0`, `0`, `untyped int`, `0`},
    		{`package a2; const _ = 'A'`, `'A'`, `untyped rune`, `65`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    		return after[:n]
    	}
    	panic("missing package header: " + src)
    }
    
    func TestValuesInfo(t *testing.T) {
    	var tests = []struct {
    		src  string
    		expr string // constant expression
    		typ  string // constant type
    		val  string // constant value
    	}{
    		{`package a0; const _ = false`, `false`, `untyped bool`, `false`},
    		{`package a1; const _ = 0`, `0`, `untyped int`, `0`},
    		{`package a2; const _ = 'A'`, `'A'`, `untyped rune`, `65`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/NullPointerTester.java

          }
    
          boolean isNullableTypeVariable(Type type) {
            if (!(type instanceof TypeVariable)) {
              return false;
            }
            TypeVariable<?> typeVar = (TypeVariable<?>) type;
            for (AnnotatedType bound : typeVar.getAnnotatedBounds()) {
              // Until Java 15, the isNullableTypeVariable case here won't help:
              // https://bugs.openjdk.java.net/browse/JDK-8202469
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

    """Defines a wrapper class for overridden python method definitions."""
    
    from collections.abc import Callable, Collection, Mapping, Sequence
    import functools
    import traceback
    from typing import Optional, TypeVar
    
    from absl import logging
    
    from tensorflow.compiler.mlir.quantization.stablehlo import quantization_config_pb2 as stablehlo_quant_config_pb2
    from tensorflow.compiler.mlir.quantization.tensorflow import exported_model_pb2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	// cond: is32Bit(val) && !t.IsPtr()
    	// result: (ADDI [val] x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpRISCV64MOVDconst {
    				continue
    			}
    			t := v_0.Type
    			val := auxIntToInt64(v_0.AuxInt)
    			x := v_1
    			if !(is32Bit(val) && !t.IsPtr()) {
    				continue
    			}
    			v.reset(OpRISCV64ADDI)
    			v.AuxInt = int64ToAuxInt(val)
    			v.AddArg(x)
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
Back to top