Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 268 for unimplement (0.19 sec)

  1. pkg/test/framework/components/echo/match/matchers_test.go

    }
    
    func (f fakeInstance) Clusters() cluster.Clusters {
    	panic("implement me")
    }
    
    func (f fakeInstance) Call(echo.CallOptions) (echo.CallResult, error) {
    	panic("implement me")
    }
    
    func (f fakeInstance) CallOrFail(test.Failer, echo.CallOptions) echo.CallResult {
    	panic("implement me")
    }
    
    func (f fakeInstance) UpdateWorkloadLabel(add map[string]string, remove []string) error {
    	panic("implement me")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/filters_test.go

    }
    
    func (f fakeInstance) Clusters() cluster.Clusters {
    	panic("implement me")
    }
    
    func (f fakeInstance) Call(echo.CallOptions) (echo.CallResult, error) {
    	panic("implement me")
    }
    
    func (f fakeInstance) CallOrFail(test.Failer, echo.CallOptions) echo.CallResult {
    	panic("implement me")
    }
    
    func (f fakeInstance) UpdateWorkloadLabel(add map[string]string, remove []string) error {
    	panic("implement me")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/fmt/errors.go

    // the returned error will implement an Unwrap method returning the operand.
    // If there is more than one %w verb, the returned error will implement an
    // Unwrap method returning a []error containing all the %w operands in the
    // order they appear in the arguments.
    // It is invalid to supply the %w verb with an operand that does not implement
    // the error interface. The %w verb is otherwise a synonym for %v.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

          continue;
        }
        if (mlir::isa<mlir::AffineMapAttr>(attr)) {
          // AffineMapAttr is not implemented.
          return errors::Unimplemented("AffineMap attribute (needed for '",
                                       name_strref, "') unimplemented");
        }
        TF_RETURN_IF_ERROR(
            llvm::TypeSwitch<mlir::Attribute, Status>(attr)
                .Case<mlir::BoolAttr, mlir::IntegerAttr, mlir::FloatAttr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

        case AttrValue::kList:
          if (attr_.full_type() == "list(string)" &&
              attr_value.list().s_size() == 0) {
            return "{}";
          }
          LOG(WARNING) << "Unimplemented: default value of list-typed attribute.";
          return "/* UNIMPLEMENTED */";
        case AttrValue::kShape:
        case AttrValue::kTensor:
        case AttrValue::kFunc:
        case AttrValue::kPlaceholder:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/issues_test.go

    			"a.S does not implement interface{M()} (missing method M) have m() want M()"},
    
    		{apkg, `package a2; import "a"; var _ interface { m() } = a.S{}`,
    			"a.S does not implement interface{m()} (unexported method m)"}, // test for issue
    
    		{nil, `package a3; type S struct{}; func (S) m(); var _ interface { M() } = S{}`,
    			"S does not implement interface{M()} (missing method M) have m() want M()"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/plugin/noderesources.go

    					// resources after reporting them once.
    					active.cancel(errors.New("plugin has closed the stream"))
    				case status.Convert(err).Code() == codes.Unimplemented:
    					// The plugin has the method, does not really implement it.
    					active.cancel(errors.New("plugin does not support node resource reporting"))
    				case ctx.Err() == nil:
    					// This is a problem, report it and retry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/go/types/issues_test.go

    			"a.S does not implement interface{M()} (missing method M) have m() want M()"},
    
    		{apkg, `package a2; import "a"; var _ interface { m() } = a.S{}`,
    			"a.S does not implement interface{m()} (unexported method m)"}, // test for issue
    
    		{nil, `package a3; type S struct{}; func (S) m(); var _ interface { M() } = S{}`,
    			"S does not implement interface{M()} (missing method M) have m() want M()"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. pkg/kube/krt/informer.go

    	collectionName string
    	id             collectionUID
    
    	eventHandlers *handlers[I]
    	augmentation  func(a any) any
    	synced        chan struct{}
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (i *informer[I]) augment(a any) any {
    	if i.augmentation != nil {
    		return i.augmentation(a)
    	}
    	return a
    }
    
    var _ internalCollection[controllers.Object] = &informer[controllers.Object]{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/go/types/type.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types
    
    // A Type represents a type of Go.
    // All types implement the Type interface.
    type Type interface {
    	// Underlying returns the underlying type of a type.
    	// Underlying types are never Named, TypeParam, or Alias types.
    	//
    	// See https://go.dev/ref/spec#Underlying_types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 541 bytes
    - Viewed (0)
Back to top