Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for Inline1 (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // TPUCompilationResultsOp.
      if (op->hasAttr(kTpuCompilationStatus)) {
        op->setAttr(kTpuCompilationStatus, attr);
      }
    }
    
    // A helper class to inline TF::StatefulPartitionedCall ops
    struct Inliner : public InlinerInterface {
      Inliner(OpBuilder& builder, SymbolTable& symbol_table)
          : InlinerInterface(builder.getContext()),
            builder(builder),
            symbol_table(symbol_table) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    typedef struct _stat StatStruct;
    
    # ifdef __BORLANDC__
    inline int IsATTY(int fd) { return isatty(fd); }
    inline int StrCaseCmp(const char* s1, const char* s2) {
      return stricmp(s1, s2);
    }
    inline char* StrDup(const char* src) { return strdup(src); }
    # else  // !__BORLANDC__
    #  if GTEST_OS_WINDOWS_MOBILE
    inline int IsATTY(int /* fd */) { return 0; }
    #  else
    inline int IsATTY(int fd) { return _isatty(fd); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    typedef struct _stat StatStruct;
    
    # ifdef __BORLANDC__
    inline int IsATTY(int fd) { return isatty(fd); }
    inline int StrCaseCmp(const char* s1, const char* s2) {
      return stricmp(s1, s2);
    }
    inline char* StrDup(const char* src) { return strdup(src); }
    # else  // !__BORLANDC__
    #  if GTEST_OS_WINDOWS_MOBILE
    inline int IsATTY(int /* fd */) { return 0; }
    #  else
    inline int IsATTY(int fd) { return _isatty(fd); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    	}
    }
    
    // containsInlinedCall reports whether the function body for the function f is
    // known to contain an inlined function call within the first maxBytes bytes.
    func containsInlinedCall(f any, maxBytes int) bool {
    	_, found := findInlinedCall(f, maxBytes)
    	return found
    }
    
    // findInlinedCall returns the PC of an inlined function call within
    // the function body for the function f if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    			partPath := fmt.Sprintf("part.%d", fi.Parts[0].Number)
    			dataPath := pathJoin(path, fi.DataDir, partPath)
    			_, lerr := Lstat(pathJoin(volumeDir, dataPath))
    			if lerr != nil {
    				// Set the inline header, our inlined data is fine.
    				fi.SetInlineData()
    				return fi, nil
    			}
    			// Data exists on disk, remove the version from metadata.
    			fi.Data = nil
    		}
    
    		// Reading data for small objects when
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    	width: 1em;
    	position: relative;
    	top: 1px;
    }
    
    ul.inline {
    	margin: 0 auto 0.625em auto;
    	margin-left: -1.375em;
    	margin-right: 0;
    	padding: 0;
    	list-style: none;
    	overflow: hidden;
    }
    
    ul.inline>li {
    	list-style: none;
    	float: left;
    	margin-left: 1.375em;
    	display: block;
    }
    
    ul.inline>li>* {
    	display: block;
    }
    
    .unstyled dl dt {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. pilot/pkg/security/authn/policy_applier_test.go

    							BypassCorsPreflight: true,
    						}),
    				},
    			},
    		},
    		{
    			name: "JWT policy with inline Jwks",
    			in: []*config.Config{
    				{
    					Spec: &v1beta1.RequestAuthentication{
    						JwtRules: []*v1beta1.JWTRule{
    							{
    								Issuer: "https://secret.foo.com",
    								Jwks:   "inline-jwks-data",
    							},
    						},
    					},
    				},
    			},
    			expected: &hcm.HttpFilter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2.go

    }
    
    // InlineData returns whether inline data has been set.
    // Note that false does not mean there is no inline data,
    // only that it is unlikely.
    func (j xlMetaV2Object) InlineData() bool {
    	_, ok := j.MetaSys[ReservedMetadataPrefixLower+"inline-data"]
    	return ok
    }
    
    func (j *xlMetaV2Object) ResetInlineData() {
    	delete(j.MetaSys, ReservedMetadataPrefixLower+"inline-data")
    }
    
    const (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    )
    
    // TypeMeta describes an individual object in an API response or request
    // with strings representing the type of the object and its API schema version.
    // Structures that are versioned or persisted should inline TypeMeta.
    //
    // +k8s:deepcopy-gen=false
    type TypeMeta struct {
    	// Kind is a string value representing the REST resource this object represents.
    	// Servers may infer this from the endpoint the client submits requests to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/types.go

    // +k8s:prerelease-lifecycle-gen:removed=1.16
    // +k8s:prerelease-lifecycle-gen:replacement=autoscaling,v1,Scale
    
    // Scale represents a scaling request for a resource.
    type Scale struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
Back to top