Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 130 for InterfaceA (0.31 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    #include "mlir/IR/Value.h"  // from @llvm-project
    #include "mlir/IR/Visitors.h"  // from @llvm-project
    #include "mlir/Interfaces/CallInterfaces.h"  // from @llvm-project
    #include "mlir/Interfaces/FoldInterfaces.h"  // from @llvm-project
    #include "mlir/Interfaces/FunctionInterfaces.h"  // from @llvm-project
    #include "mlir/Interfaces/InferTypeOpInterface.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		outBytes, err := json.Marshal(out)
    		if err != nil {
    			t.Fatalf("failed to json.Marshal(out): %v", err)
    		}
    		inMap := map[string]interface{}{}
    		if err := json.Unmarshal(inBytes, &inMap); err != nil {
    			t.Fatalf("failed to json.Unmarshal(in): %v", err)
    		}
    		outMap := map[string]interface{}{}
    		if err := json.Unmarshal(outBytes, &outMap); err != nil {
    			t.Fatalf("failed to json.Unmarshal(out): %v", err)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    func TestUnmarshalClaim(t *testing.T) {
    	tests := []struct {
    		name    string
    		claims  string
    		do      func(claims) (interface{}, error)
    		want    interface{}
    		wantErr bool
    	}{
    		{
    			name:   "string claim",
    			claims: `{"aud":"foo"}`,
    			do: func(c claims) (interface{}, error) {
    				var s string
    				err := c.unmarshalClaim("aud", &s)
    				return s, err
    			},
    			want: "foo",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		count++
    		return framework.Queue, nil
    	}
    	queueHintReturnSkip := func(logger klog.Logger, pod *v1.Pod, oldObj, newObj interface{}) (framework.QueueingHint, error) {
    		count++
    		return framework.QueueSkip, nil
    	}
    	queueHintReturnErr := func(logger klog.Logger, pod *v1.Pod, oldObj, newObj interface{}) (framework.QueueingHint, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    var newCodec = codecs.LegacyCodec(newGroupVersion)
    var parameterCodec = runtime.NewParameterCodec(scheme)
    
    var accessor = meta.NewAccessor()
    var namer runtime.Namer = accessor
    var admissionControl admission.Interface
    
    func init() {
    	metav1.AddToGroupVersion(scheme, metav1.SchemeGroupVersion)
    
    	// unnamed core group
    	scheme.AddUnversionedTypes(grouplessGroupVersion, &metav1.Status{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                abstract class TransformWithMultipleTargets implements TransformAction<Parameters> {
                    interface Parameters extends TransformParameters {
                        @Input
                        Property<String> getTarget()
                    }
    
                    @InputArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    	Original map[string]interface{}
    	// Modified is the modified object (new config we want)
    	Modified map[string]interface{}
    	// Current is the current object (live config in the server)
    	Current map[string]interface{}
    	// TwoWay is the expected two-way merge patch diff between original and modified
    	TwoWay map[string]interface{}
    	// ThreeWay is the expected three-way merge patch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_generator.go

    		recorder:        recorder,
    		blkUtil:         blkUtil,
    		translator:      csitrans.New(),
    	}
    }
    
    // OperationGenerator interface that extracts out the functions from operation_executor to make it dependency injectable
    type OperationGenerator interface {
    	// Generates the MountVolume function needed to perform the mount of a volume plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. api/go1.3.txt

    pkg crypto/tls, func NewLRUClientSessionCache(int) ClientSessionCache
    pkg crypto/tls, type ClientSessionCache interface { Get, Put }
    pkg crypto/tls, type ClientSessionCache interface, Get(string) (*ClientSessionState, bool)
    pkg crypto/tls, type ClientSessionCache interface, Put(string, *ClientSessionState)
    pkg crypto/tls, type ClientSessionState struct
    pkg crypto/tls, type Config struct, ClientSessionCache ClientSessionCache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    		// fakeConn implements the optional Execer interface,
    		// so arguably this is the correct behavior. But
    		// maybe I should flesh out the fakeConn.Exec
    		// implementation so this properly fails.
    		// t.Errorf("expected error inserting nil name with Exec")
    	}
    
    	paramtype := reflect.TypeOf(spec.rows[0].nullParam)
    	bindVal := reflect.New(paramtype).Interface()
    
    	for i := 0; i < 5; i++ {
    		id := i + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top