Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 140 for cmptype (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    	envs[claimsVarName] = buildEnvSet([]cel.EnvOption{cel.Variable(claimsVarName, claimsType.CelType())}, []*apiservercel.DeclType{claimsType})
    	envs[userVarName] = buildEnvSet([]cel.EnvOption{cel.Variable(userVarName, userType.CelType())}, []*apiservercel.DeclType{userType})
    
    	return envs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loadmacho/ldmacho.go

    	switch arch.Family {
    	default:
    		return errorf("mach-o %s unimplemented", arch.Name)
    	case sys.AMD64:
    		if e != binary.LittleEndian || m.cputype != LdMachoCpuAmd64 {
    			return errorf("mach-o object but not amd64")
    		}
    	case sys.ARM64:
    		if e != binary.LittleEndian || m.cputype != LdMachoCpuArm64 {
    			return errorf("mach-o object but not arm64")
    		}
    	}
    
    	m.cmd = make([]ldMachoCmd, ncmd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/iexport.go

    //
    //     type ChanType struct {
    //         Tag  itag   // chanType
    //         Dir  uint64 // 1 RecvOnly; 2 SendOnly; 3 SendRecv
    //         Elem typeOff
    //     }
    //
    //     type MapType struct {
    //         Tag  itag // mapType
    //         Key  typeOff
    //         Elem typeOff
    //     }
    //
    //     type FuncType struct {
    //         Tag       itag // signatureType
    //         PkgPath   stringOff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/openapi/compiling_test.go

    		environment.VersionedOptions{
    			IntroducedVersion: version.MajorMinor(1, 26),
    			EnvOptions: []cel.EnvOption{
    				cel.Variable("foo", fooType.CelType()),
    				cel.Variable("bar", barType.CelType()),
    			},
    			DeclTypes: []*apiservercel.DeclType{
    				fooType,
    				barType,
    			},
    		},
    	)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirJvmTypeMapper.kt

        override val token: KaLifetimeToken,
    ) : KaJvmTypeMapper(), KaFirSessionComponent {
    
        override fun mapTypeToJvmType(type: KaType, mode: TypeMappingMode): Type {
            return analysisSession.useSiteSession.jvmTypeMapper.mapType(type.coneType, mode, sw = null, unresolvedQualifierRemapper = null)
        }
    
        override fun isPrimitiveBacked(type: KaType): Boolean {
            return analysisSession.useSiteSession.jvmTypeMapper.isPrimitiveBacked(type.coneType)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/runtime/map_faststr.go

    }
    
    func growWork_faststr(t *maptype, h *hmap, bucket uintptr) {
    	// make sure we evacuate the oldbucket corresponding
    	// to the bucket we're about to use
    	evacuate_faststr(t, h, bucket&h.oldbucketmask())
    
    	// evacuate one more oldbucket to make progress on growing
    	if h.growing() {
    		evacuate_faststr(t, h, h.nevacuate)
    	}
    }
    
    func evacuate_faststr(t *maptype, h *hmap, oldbucket uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. tensorflow/c/ops.cc

    }
    
    #define DEFINE_TF_GETATTR(func, c_type, cc_type)                         \
      void TF_ShapeInferenceContext_GetAttr##func(                           \
          TF_ShapeInferenceContext* ctx, const char* attr_name, c_type* val, \
          TF_Status* status) {                                               \
        TF_SetStatus(status, TF_OK, "");                                     \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 28 22:41:35 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/DeserializationInstantiator.java

         *
         * @throws ObjectInstantiationException On failure to create the new instance.
         */
        <T> T newInstance(Class<T> implType, Class<? super T> baseClass) throws ObjectInstantiationException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10JvmTypeMapper.kt

        override fun mapTypeToJvmType(type: KaType, mode: TypeMappingMode): Type {
            val kotlinType = (type as KaFe10Type).fe10Type
            return typeMapper.mapType(kotlinType, mode)
        }
    
        override fun isPrimitiveBacked(type: KaType): Boolean {
            val kotlinType = (type as KaFe10Type).fe10Type
            return typeMapper.isPrimitiveBacked(kotlinType)
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authorization/cel/compile_test.go

    		if !ok {
    			t.Fatalf("expected field %q to be present", nativeField.Name)
    		}
    		declFieldType := nativeTypeToCELType(t, nativeField.Type, field, fields)
    		if declFieldType != nil && declFieldType.CelType().Equal(declField.Type.CelType()).Value() != true {
    			return fmt.Errorf("expected native field %q to have type %v, got %v", nativeField.Name, nativeField.Type, declField.Type)
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top