Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for References (0.21 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

    import org.jetbrains.kotlin.fir.references.FirErrorNamedReference
    import org.jetbrains.kotlin.fir.references.FirNamedReference
    import org.jetbrains.kotlin.fir.references.FirResolvedNamedReference
    import org.jetbrains.kotlin.fir.references.FirThisReference
    import org.jetbrains.kotlin.fir.references.builder.buildSimpleNamedReference
    import org.jetbrains.kotlin.fir.resolve.ResolutionMode
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheBuilder.java

       * SoftReference} (by default, strong references are used). Softly-referenced objects will be
       * garbage-collected in a <i>globally</i> least-recently-used manner, in response to memory
       * demand.
       *
       * <p><b>Warning:</b> in most circumstances it is better to set a per-cache {@linkplain
       * #maximumSize(long) maximum size} instead of using soft references. You should only use this
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

     * <td>
     * This URL references a share called <code>tmp</code> on the server
     * <code>angus</code> as user <code>miallen</code> who's password is
     * <code>mypass</code>.
     * </td>
     * </tr>
     * 
     * <tr>
     * <td width="20%">
     * <code>smb://Administrator:P%40ss@msmith1/c/WINDOWS/Desktop/foo.txt</code></td>
     * <td>
     * A relatively sophisticated example that references a file
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe.go

    						dr, _ = configClient.NetworkingV1alpha3().DestinationRules(drNamespace).Get(context.Background(), drName, metav1.GetOptions{})
    						if dr == nil {
    							fmt.Fprintf(writer,
    								"WARNING: Proxy is stale; it references to non-existent destination rule %s.%s\n",
    								drName, drNamespace)
    						}
    						recordDestinationRules[newResourceID(drNamespace, drName)] = dr.DeepCopy()
    					}
    				}
    				if dr != nil {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    	} else if escaped {
    		err = errors.New("unfinished escaping")
    	}
    	return args, err
    }
    
    // Translate rewrites f.AST, the original Go input, to remove
    // references to the imported package C, replacing them with
    // references to the equivalent Go types, functions, and variables.
    func (p *Package) Translate(f *File) {
    	for _, cref := range f.Ref {
    		// Convert C.ulong to C.unsigned long, etc.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * <p>Note: the multimap assumes complete ownership over of {@code map} and the collections
       * returned by {@code factory}. Those objects should not be manually updated and they should not
       * use soft, weak, or phantom references.
       *
       * @param map place to store the mapping from each key to its corresponding values
       * @param factory supplier of new, empty collections that will each hold all values for a given
       *     key
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 86.1K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-v2.go

    	}
    	if len(x.versions) > 0 {
    		x.versions = x.versions[:0]
    	}
    	x.data = nil
    	x.metaV = xlMetaVersion
    	return x.AddLegacy(xlMeta)
    }
    
    // Load all versions of the stored data.
    // Note that references to the incoming buffer will be kept.
    func (x *xlMetaV2) Load(buf []byte) error {
    	if meta, data, err := isIndexedMetaV2(buf); err != nil {
    		return err
    	} else if meta != nil {
    		return x.loadIndexed(meta, data)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  8. tests/query_test.go

    		Number2 uint64     `gorm:"default:NULL"`
    		Number3 float64    `gorm:"default:NULL"`
    		Now     *time.Time `gorm:"defalut:NULL"`
    		Item1Id string
    		Item1   *QueryResetItem `gorm:"references:ID"`
    		Item2Id string
    		Item2   *QueryResetItem `gorm:"references:ID"`
    	}
    
    	DB.Migrator().DropTable(&QueryResetNullValue{}, &QueryResetItem{})
    	DB.AutoMigrate(&QueryResetNullValue{}, &QueryResetItem{})
    
    	now := time.Now()
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Thu Apr 25 12:22:53 GMT 2024
    - 49.8K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.h

    //   example, one cannot use the output of "switch" node as input.
    // - `inputs` and `outputs` cannot have reference types. Reference types are
    //   not exposed through C API and are being replaced with Resources. We support
    //   reference types inside function's body to support legacy code. Do not
    //   use them in new code.
    // - Every node in the function's body must have all of its inputs (including
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  10. cmd/xl-storage.go

    	}
    
    	fi, err = getFileInfo(buf, volume, path, versionID, readData, true)
    	if err != nil {
    		return fi, err
    	}
    
    	if len(fi.Data) == 0 {
    		// We did not read inline data, so we have no references.
    		defer metaDataPoolPut(buf)
    	}
    
    	if readData {
    		if len(fi.Data) > 0 || fi.Size == 0 {
    			if fi.InlineData() {
    				// If written with header we are fine.
    				return fi, nil
    			}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
Back to top