Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 258 for set_type (0.17 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

      }
      FunctionLibraryDefinition fld(OpRegistry::Global(), fdl);
      {
        std::unique_ptr<Graph> g(new Graph(&fld));
    
        tensorflow::TensorProto tensor_proto;
        tensor_proto.set_dtype(tensorflow::DT_INT32);
        tensorflow::TensorShapeProto shape;
        shape.add_dim()->set_size(2);
        *tensor_proto.mutable_tensor_shape() = shape;
        for (int i = 0; i < 2; ++i) {
          tensor_proto.add_int_val(1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon-provider-api/1.0-beta-2/wagon-provider-api-1.0-beta-2.jar

    public String getHost(); public void setHost(String); public String getPassword(); public void setPassword(String); public int getPort(); public void setPort(int); public String getUserName(); public void setUserName(String); public String getType(); public void setType(String); public String getNonProxyHosts(); public void setNonProxyHosts(String); public String getNtlmHost(); public void setNtlmHost(String); public void setNtlmDomain(String); public String getNtlmDomain(); } org/apache/maven/wagon/...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 45.2K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      validate_indices:bool;
    }
    
    table EqualOptions {
    }
    
    table NotEqualOptions {
    }
    
    table ShapeOptions {
      // Optional output type of the operation (int32 or int64). Defaults to int32.
      out_type : TensorType;
    }
    
    table RankOptions {
    }
    
    table PowOptions {
    }
    
    table FakeQuantOptions {
      // Parameters supported by version 1:
      min:float;
      max:float;
      num_bits:int;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

      @Test
      fun multipartBodyBuilder() {
        val requestBody = "".toRequestBody(null)
        var builder: MultipartBody.Builder = MultipartBody.Builder()
        builder = MultipartBody.Builder("")
        builder = builder.setType("".toMediaType())
        builder = builder.addPart(requestBody)
        builder = builder.addPart(headersOf(), requestBody)
        builder = builder.addPart(null, requestBody)
        builder = builder.addFormDataPart("", "")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

                                                   /*type=*/2);
      auto send = builder.create<SendOp>(
          loc, token.getType(), operand, token, channel_handle,
          /*is_host_transfer=*/builder.getBoolAttr(true));
    
      SetFrontendAttributes(send, index, key, operand.getType(),
                            /*device_to_host=*/true, host_handler_name);
    
      SetOpSharding(send, manual_sharding);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/wagon/wagon-provider-api/1.0-beta-2/wagon-provider-api-1.0-beta-2.jar

    public String getHost(); public void setHost(String); public String getPassword(); public void setPassword(String); public int getPort(); public void setPort(int); public String getUserName(); public void setUserName(String); public String getType(); public void setType(String); public String getNonProxyHosts(); public void setNonProxyHosts(String); public String getNtlmHost(); public void setNtlmHost(String); public void setNtlmDomain(String); public String getNtlmDomain(); } org/apache/maven/wagon/...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 45.2K bytes
    - Viewed (1)
  7. src/cmd/compile/internal/staticinit/sched.go

    			if t.IsSigned() && constant.Compare(cv, token.GEQ, constant.MakeUint64(1<<(bits-1))) {
    				cv = constant.BinaryOp(cv, token.OR, constant.MakeInt64(-1<<(bits-1)))
    			}
    		}
    	}
    	c = ir.NewConstExpr(cv, c)
    	c.SetType(t)
    	return c, true
    }
    
    func addStr(n *ir.AddStringExpr) ir.Node {
    	// Merge adjacent constants in the argument list.
    	s := n.List
    	need := 0
    	for i := 0; i < len(s); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema.fbs

    }
    
    table EqualOptions {
    }
    
    table NotEqualOptions {
    }
    
    table ShapeOptions {
      // Optional output type of the operation (int32 or int64). Defaults to int32.
      out_type : TensorType;
    }
    
    table RankOptions {
    }
    
    table PowOptions {
    }
    
    table FakeQuantOptions {
      // Parameters supported by version 1:
      min:float;
      max:float;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

                             const TensorShapeProto& shape, Graph* graph_out) {
      DataType data_type = src_node->output_type(src_port);
      TensorProto dummy_proto;
      dummy_proto.set_dtype(data_type);
      *dummy_proto.mutable_tensor_shape() = shape;
      // Don't set any value field in the proto, since it is only going to be used
      // for shape inference.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            int type = be.getOperation().getType();
            if ((type == Types.ASSIGNMENT_OPERATOR || type == Types.EQUAL)
                && left instanceof ClassExpression) {
                ClassExpression ce = (ClassExpression) left;
                String error = "you tried to assign a value to the class '" + ce.getType().getName() + "'";
                if (ce.getType().isScript()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top