Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 287 for emberi (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_serialization.cc

               << "failed to serialize the pruned stablehlo module";
      }
      return bytecode;
    }
    
    // Serializes the stablehlo functions called by XlaCallModuleOp to bytecode
    // and embeds the bytecode in XlaCallModuleOp's `module` attribute.
    //
    // The stablehlo functions include the function referred by XlaCallModuleOp's
    // `_entry_function` attribute, and any stablehlo functions called transitively
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/debug/elf/file.go

    	// uncompressed data.
    	FileSize uint64
    }
    
    // A Section represents a single section in an ELF file.
    type Section struct {
    	SectionHeader
    
    	// Embed ReaderAt for ReadAt method.
    	// Do not embed SectionReader directly
    	// to avoid having Read and Seek.
    	// If a client wants Read and Seek it must use
    	// Open() to avoid fighting over the seek offset
    	// with other clients.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/cluster/topology.go

    		Index:                   len(allClusters),
    		ConfigMetadata:          config.Meta,
    	}
    }
    
    // Topology gives information about the relationship between clusters.
    // Cluster implementations can embed this struct to include common functionality.
    type Topology struct {
    	ClusterName             string
    	Network                 string
    	ClusterHTTPProxy        string
    	PrimaryClusterName      string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/runtime/map_faststr.go

    			}
    		}
    	}
    	return unsafe.Pointer(&zeroVal[0])
    }
    
    // mapaccess2_faststr should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/ugorji/go/codec
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname mapaccess2_faststr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         *
         * @return the default classifier, or {@code null}.
         */
        @Nullable
        String getClassifier();
    
        /**
         * Specifies if the artifact already embeds its own dependencies.
         * This is the case for JEE packages or similar artifacts such as
         * WARs, EARs, etc.
         *
         * @return if the artifact's dependencies are included in the artifact
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/syscall/dir_plan9.go

    		Path: ^uint64(0),
    		Vers: ^uint32(0),
    		Type: ^uint8(0),
    	},
    	Mode:   ^uint32(0),
    	Atime:  ^uint32(0),
    	Mtime:  ^uint32(0),
    	Length: ^int64(0),
    }
    
    // Null assigns special "don't touch" values to members of d to
    // avoid modifying them during [Wstat].
    func (d *Dir) Null() { *d = nullDir }
    
    // Marshal encodes a 9P stat message corresponding to d into b
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. cmd/admin-handlers-users_test.go

    	if err != nil {
    		c.Fatalf("Unable to set user: %v", err)
    	}
    
    	// 1. Add user to a new group
    	group := "mygroup"
    	err = s.adm.UpdateGroupMembers(ctx, madmin.GroupAddRemove{
    		Group:   group,
    		Members: []string{accessKey},
    	})
    	if err != nil {
    		c.Fatalf("Unable to add user to group: %v", err)
    	}
    
    	// 2. Check that user has no access
    	uClient := s.getUserClient(c, accessKey, secretKey, "")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  8. src/net/interface.go

    // Solaris, the MulticastAddrs method of Interface is not implemented.
    
    // errNoSuchInterface should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/sagernet/sing
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname errNoSuchInterface
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/encoding/asn1/marshal.go

    	}
    
    	if params.timeType != 0 && tag != TagUTCTime {
    		return nil, StructuralError{"explicit time type given to non-time member"}
    	}
    
    	if params.stringType != 0 && tag != TagPrintableString {
    		return nil, StructuralError{"explicit string type given to non-string member"}
    	}
    
    	switch tag {
    	case TagPrintableString:
    		if params.stringType == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. pilot/pkg/xds/endpoints/ep_filters.go

    				ClusterID: gw.Cluster,
    				Labels:    labels.Instance{},
    			}, gwEp.Metadata)
    			// Currently gateway endpoint does not support tunnel.
    			lbEndpoints.append(gwIstioEp, gwEp)
    		}
    
    		// Endpoint members could be stripped or aggregated by network. Adjust weight value here.
    		lbEndpoints.refreshWeight()
    		filtered = append(filtered, lbEndpoints)
    	}
    
    	return filtered
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top