Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for typeOff (0.13 sec)

  1. cmd/test-utils_test.go

    	r = r*1664525 + 1013904223
    	randN = r
    	randmu.Unlock()
    	return strconv.Itoa(int(1e9 + r%1e9))[1:]
    }
    
    // isSameType - compares two object types via reflect.TypeOf
    func isSameType(obj1, obj2 interface{}) bool {
    	return reflect.TypeOf(obj1) == reflect.TypeOf(obj2)
    }
    
    // TestServer encapsulates an instantiation of a MinIO instance with a temporary backend.
    // Example usage:
    //
    //	s := StartTestServer(t,"Erasure")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		}
    		for key, value := range config.IndexerFuncs {
    			if value != nil {
    				indexedTrigger = &indexedTriggerFunc{
    					indexName:   key,
    					indexerFunc: value,
    				}
    			}
    		}
    	}
    
    	if config.Clock == nil {
    		config.Clock = clock.RealClock{}
    	}
    	objType := reflect.TypeOf(obj)
    	cacher := &Cacher{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                val typeArgument = typeArguments[index]
                if (typeArgument !is FirTypeProjectionWithVariance || typeArgument.variance != Variance.INVARIANT) return emptyMap()
                result[typeParameter] = typeArgument.typeRef.coneType.asKtType()
            }
    
            return result
        }
    
        private fun FirArrayLiteral.toTypeArgumentsMapping(
            partiallyAppliedSymbol: KaPartiallyAppliedSymbol<*, *>,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.pb.go

    		(*GatewayAddress_Hostname)(nil),
    		(*GatewayAddress_Address)(nil),
    	}
    	type x struct{}
    	out := protoimpl.TypeBuilder{
    		File: protoimpl.DescBuilder{
    			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
    			RawDescriptor: file_workloadapi_workload_proto_rawDesc,
    			NumEnums:      6,
    			NumMessages:   12,
    			NumExtensions: 0,
    			NumServices:   0,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		t.Fatalf("unexpected error message %v", err)
    	}
    	status, ok := err.(apierrors.APIStatus)
    	if !ok {
    		t.Fatalf("expect error of implements the APIStatus interface, got %v", reflect.TypeOf(err))
    	}
    	inconsistentContinueFromSecondItem := status.Status().ListMeta.Continue
    	if len(inconsistentContinueFromSecondItem) == 0 {
    		t.Fatalf("expect non-empty continue token")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top