Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 224 for targ (0.08 sec)

  1. tensorflow/compiler/jit/rearrange_function_argument_pass_test.cc

        // "ret0" = "arg1"
        // "ret1" = "arg0"
        tensorflow::Scope s = tensorflow::Scope::NewRootScope();
        Output arg0 = ops::_Arg(s.WithOpName("arg0"), DT_RESOURCE, 0);
        Output arg1 = ops::_Arg(s.WithOpName("arg1"), DT_RESOURCE, 1);
        Output arg2 = ops::_Arg(s.WithOpName("arg2"), DT_INT32, 2);
        auto ret0 = ops::_Retval(s.WithOpName("ret0"), arg1, 0);
        auto ret1 = ops::_Retval(s.WithOpName("ret1"), arg0, 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/traceback_c.c

    	uintptr_t   data;
    };
    
    void cgoTraceback(void* parg) {
    	struct cgoTracebackArg* arg = (struct cgoTracebackArg*)(parg);
    	arg->buf[0] = 1;
    	arg->buf[1] = 2;
    	arg->buf[2] = 3;
    	arg->buf[3] = 0;
    }
    
    void cgoSymbolizer(void* parg) {
    	struct cgoSymbolizerArg* arg = (struct cgoSymbolizerArg*)(parg);
    	if (arg->pc != arg->data + 1) {
    		arg->file = "unexpected data";
    	} else {
    		arg->file = "cgo symbolizer";
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 24 21:47:44 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  3. src/main/assemblies/targz-bin.xml

    <?xml version="1.0"?>
    <assembly>
    	<id>targz</id>
    	<formats>
    		<format>tar.gz</format>
    	</formats>
    
    	<includeBaseDirectory>false</includeBaseDirectory>
    
    	<componentDescriptors>
    		<componentDescriptor>src/main/assemblies/common-bin.xml
    		</componentDescriptor>
    	</componentDescriptors>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Dec 13 08:20:29 UTC 2015
    - 296 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/shape-attrs.pbtxt

    node {
      name: "args_0"
      op: "_Arg"
      attr {
        key: "T"
        value {
          type: DT_RESOURCE
        }
      }
      attr {
        key: "index"
        value {
          i: 0
        }
      }
    }
    node {
      name: "args_1"
      op: "_Arg"
      attr {
        key: "T"
        value {
          type: DT_RESOURCE
        }
      }
      attr {
        key: "index"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 04 18:02:53 UTC 2020
    - 5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    Wei Xiao <******@****.***> 1500351937 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/tag/tag.go

    // license that can be found in the LICENSE file.
    
    // Package tag contains functionality handling tags and related data.
    package tag // import "golang.org/x/text/internal/tag"
    
    import "sort"
    
    // An Index converts tags to a compact numeric value.
    //
    // All elements are of size 4. Tags may be up to 4 bytes long. Excess bytes can
    // be used to store additional information about the tag.
    type Index string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/core/src/test/resources/org/gradle/api/internal/file/archive/permissions.tar

    Lars Hvile <******@****.***> 1327192435 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 22 00:33:55 UTC 2012
    - 10K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/tag.go

    func (tag Tag) IsEmpty() bool {
    	return tag.Key == ""
    }
    
    // Validate checks this tag.
    func (tag Tag) Validate() error {
    	if len(tag.Key) == 0 || utf8.RuneCountInString(tag.Key) > 128 {
    		return errInvalidTagKey
    	}
    
    	if utf8.RuneCountInString(tag.Value) > 256 {
    		return errInvalidTagValue
    	}
    
    	return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. fess-crawler/src/test/resources/extractor/tar/test.tar

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 10K bytes
    - Viewed (0)
  10. istioctl/pkg/tag/tag.go

    	cmd := &cobra.Command{
    		Use:   "generate <revision-tag>",
    		Short: "Generate configuration for a revision tag to stdout",
    		Long: `Create a revision tag and output to the command's stdout. Tag an Istio control plane revision for use with namespace istio.io/rev
    injection labels.`,
    		Example: `  # Create a revision tag from the "1-8-0" revision
      istioctl tag generate prod --revision 1-8-0 > tag.yaml
    
      # Apply the tag to cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top