Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,487 for unimplement (0.31 sec)

  1. pkg/api/testing/meta_test.go

    						t.Errorf("%v (%v) has ObjectMeta but does not implement ObjectMetaAccessor", gv.WithKind(kind), knownType)
    						continue
    					}
    					if _, ok := value.Elem().Type().FieldByName("ListMeta"); ok {
    						t.Errorf("%v (%v) has ListMeta but does not implement ListMetaAccessor", gv.WithKind(kind), knownType)
    						continue
    					}
    					t.Logf("%v (%v) does not implement ListMetaAccessor or ObjectMetaAccessor", gv.WithKind(kind), knownType)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 14 10:11:56 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGMultiVersionTest.groovy

            }
    
            @Override
            String getIncludeCategoryOrTagConfigurationElement() {
                // TODO implement this if needed
                throw new UnsupportedOperationException()
            }
    
            @Override
            String getExcludeCategoryOrTagConfigurationElement() {
                // TODO implement this if needed
                throw new UnsupportedOperationException()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/fake_session.cc

    }
    
    Status FakeSession::Create(const tensorflow::GraphDef& graph) {
      return tensorflow::errors::Unimplemented("not available");
    }
    Status FakeSession::Extend(const tensorflow::GraphDef& graph) {
      return tensorflow::errors::Unimplemented("not available");
    }
    
    Status FakeSession::Close() {
      return tensorflow::errors::Unimplemented("not available");
    }
    
    Status FakeSession::ListDevices(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. pkg/util/grpc/codes.go

    	"RESOURCE_EXHAUSTED":  codes.ResourceExhausted,
    	"FAILED_PRECONDITION": codes.FailedPrecondition,
    	"ABORTED":             codes.Aborted,
    	"OUT_OF_RANGE":        codes.OutOfRange,
    	"UNIMPLEMENTED":       codes.Unimplemented,
    	"INTERNAL":            codes.Internal,
    	"UNAVAILABLE":         codes.Unavailable,
    	"DATA_LOSS":           codes.DataLoss,
    	"UNAUTHENTICATED":     codes.Unauthenticated,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 06 16:50:02 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. pkg/registry/registrytest/endpoint.go

    	return nil, fmt.Errorf("unimplemented!")
    }
    
    func (e *EndpointRegistry) Create(ctx context.Context, endpoints runtime.Object, createValidation rest.ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error) {
    	return nil, fmt.Errorf("unimplemented!")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 16:50:16 UTC 2019
    - 4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiUnsupportedVersionIntegrationTest.groovy

            toolingApi.withConnector { connector -> connector.useDistribution(distroZip) }
            settingsFile.touch()
        }
    
        def "tooling api reports an error when requesting a model using a gradle version that does not implement the tooling api"() {
            when:
            toolingApi.withConnection { ProjectConnection connection -> connection.getModel(GradleProject.class) }
    
            then:
            UnsupportedVersionException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/plugins/jvm/PlatformDependencyModifiers.java

    public interface PlatformDependencyModifiers {
        /**
         * A dependency modifier that can modify a dependency to select a platform variant.
         *
         * @return the dependency modifier
         *
         * @implSpec Do not implement this method. Gradle generates the implementation automatically.
         *
         * @see PlatformDependencyModifiers.PlatformDependencyModifier#modifyImplementation(ModuleDependency)
         */
        @Nested
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 22 04:12:21 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ProjectDependency.java

        /**
         * {@inheritDoc}
         *
         * @deprecated This class will no longer implement {@link SelfResolvingDependency} in Gradle 9.0
         */
        @Override
        @Deprecated
        TaskDependency getBuildDependencies();
    
        /**
         * {@inheritDoc}
         *
         * @deprecated This class will no longer implement {@link SelfResolvingDependency} in Gradle 9.0
         */
        @Override
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top