Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,487 for unimplement (0.18 sec)

  1. src/os/wait_unimp.go

    // aix, darwin, js/wasm, openbsd, solaris and wasip1/wasm don't implement
    // waitid/wait6.
    
    //go:build aix || darwin || (js && wasm) || openbsd || solaris || wasip1
    
    package os
    
    // blockUntilWaitable attempts to block until a call to p.Wait will
    // succeed immediately, and reports whether it has done so.
    // It does not actually call p.Wait.
    // This version is used on systems that do not implement waitid,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 13:16:52 UTC 2023
    - 831 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/workflow/doc_test.go

    		Run: func(data RunData) error {
    			// transform data into a typed data struct
    			d, ok := data.(myPhaseData)
    			if !ok {
    				return errors.New("invalid RunData type")
    			}
    
    			// implement your phase logic...
    			fmt.Printf("%v\n", d.Data())
    			return nil
    		},
    	}
    
    	// Create another phase
    	var myPhase2 = Phase{
    		Name:  "myPhase2",
    		Short: "Another phase of a kubeadm composable workflow...",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 07:27:25 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  3. src/hash/example_test.go

    	if !ok {
    		log.Fatal("first does not implement encoding.BinaryMarshaler")
    	}
    	state, err := marshaler.MarshalBinary()
    	if err != nil {
    		log.Fatal("unable to marshal hash:", err)
    	}
    
    	second := sha256.New()
    
    	unmarshaler, ok := second.(encoding.BinaryUnmarshaler)
    	if !ok {
    		log.Fatal("second does not implement encoding.BinaryUnmarshaler")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 04 03:47:34 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/convert_type.cc

        *type = builder.getType<mlir::tf_type::tftype##Type>(); \
        return OkStatus();
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.def"
    
        default:
          return errors::Unimplemented(absl::StrCat(
              "Converting DataType '", DataTypeString(dtype), "' to MLIR Type"));
      }
    }
    
    Status ConvertScalarTypeToDataType(Type type, DataType* dtype) {
      if (type.isF16()) {
        *dtype = DT_HALF;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ContentFilterableExtensions.kt

    import java.io.FilterReader
    import kotlin.reflect.KClass
    
    
    /**
     * Adds a content filter to be used during the copy.
     * Multiple calls add additional filters to the filter chain.
     * Each filter should implement [FilterReader].
     * Import `org.apache.tools.ant.filters.*` for access to all the standard Ant filters.
     *
     * Examples:
     *
     * ```
     * filter<StripJavaComments>()
     * filter<com.mycompany.project.CustomFilter>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/hash/marshal_test.go

    			if !ok {
    				t.Fatalf("Hash does not implement MarshalBinary")
    			}
    			enc, err := h2m.MarshalBinary()
    			if err != nil {
    				t.Fatalf("MarshalBinary: %v", err)
    			}
    			if !bytes.Equal(enc, tt.golden) {
    				t.Errorf("MarshalBinary = %x, want %x", enc, tt.golden)
    			}
    			h3u, ok := h3.(encoding.BinaryUnmarshaler)
    			if !ok {
    				t.Fatalf("Hash does not implement UnmarshalBinary")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 07:45:46 UTC 2017
    - 5.4K bytes
    - Viewed (0)
  7. testing/architecture-test/src/test/java/org/gradle/architecture/test/PropertyImplementationTest.java

    import com.tngtech.archunit.lang.ArchRule;
    import org.gradle.api.internal.provider.AbstractProperty;
    import org.gradle.api.provider.Property;
    
    import static com.tngtech.archunit.core.domain.JavaClass.Predicates.implement;
    import static com.tngtech.archunit.lang.conditions.ArchConditions.beAssignableTo;
    import static com.tngtech.archunit.lang.syntax.ArchRuleDefinition.classes;
    
    @AnalyzeClasses(packages = "org.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/gradients/tape/tape_operation.cc

                                          const AbstractOperation* value) {
      return tensorflow::errors::Unimplemented(
          "SetAttrFunction has not been implemented yet.");
    }
    Status TapeOperation::SetAttrFunctionName(const char* attr_name,
                                              const char* value, size_t length) {
      return tensorflow::errors::Unimplemented(
          "SetAttrFunctionName has not been implemented "
          "yet.");
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 06:16:45 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. test/fixedbugs/bug324.dir/prog.go

    	// px.private()
    
    	// this assignment is correctly illegal:
    	//	*Implementation does not implement p.Exported (missing p.private method)
    	// px = new(Implementation)
    
    	// this assignment is correctly illegal:
    	//	p.Exported does not implement Exported (missing private method)
    	// x = px
    
    	// this assignment unexpectedly compiles and then executes
    	defer func() {
    		recover()
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 07 16:37:05 UTC 2012
    - 1.2K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/function.cc

        for (const auto& t : signature.tuple()) {
          if (t.type() != TaggedValue::Type::TENSOR_SPEC) {
            break;
          }
        }
        return ::tensorflow::OkStatus();
      }
      return tensorflow::errors::Unimplemented(
          "Only functions with inputs/outputs containing a single tensor or a tuple"
          " of tensors are supported right now.");
    }
    
    Status VerifySupportedArgs(TaggedValue args) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top