Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 579 for holder (0.21 sec)

  1. src/cmd/internal/obj/mips/obj0.go

    	p.To.SetTarget(startPred.Link)
    	startPred.Link.Mark |= LABEL
    	p.Mark |= BRANCH
    
    	// placeholder for q1's jump target
    	p = obj.Appendp(p, c.newprog)
    
    	p.As = obj.ANOP // zero-width place holder
    	q1.To.SetTarget(p)
    
    	return p
    }
    
    func (c *ctxt0) addnop(p *obj.Prog) {
    	q := c.newprog()
    	q.As = ANOOP
    	q.Pos = p.Pos
    	q.Link = p.Link
    	p.Link = q
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/Monitor.java

     *   // do other things since the monitor was not available
     * }
     * }</pre>
     *
     * <h2>Comparison with {@code synchronized} and {@code ReentrantLock}</h2>
     *
     * <p>The following examples show a simple threadsafe holder expressed using {@code synchronized},
     * {@link ReentrantLock}, and {@code Monitor}.
     *
     * <h3>{@code synchronized}</h3>
     *
     * <p>This version is the fewest lines of code, largely because the synchronization mechanism used
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/Monitor.java

     *   // do other things since the monitor was not available
     * }
     * }</pre>
     *
     * <h2>Comparison with {@code synchronized} and {@code ReentrantLock}</h2>
     *
     * <p>The following examples show a simple threadsafe holder expressed using {@code synchronized},
     * {@link ReentrantLock}, and {@code Monitor}.
     *
     * <h3>{@code synchronized}</h3>
     *
     * <p>This version is the fewest lines of code, largely because the synchronization mechanism used
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/CacheBuilder.java

       *
       * @param loader the cache loader used to obtain new values
       * @return a cache having the requested features
       */
      public <K1 extends K, V1 extends V> LoadingCache<K1, V1> build(
          CacheLoader<? super K1, V1> loader) {
        checkWeightWithWeigher();
        return new LocalCache.LocalLoadingCache<>(this, loader);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/arm64/asm.go

    	}
    
    	return val, 0, false
    }
    
    func archrelocvariant(*ld.Target, *loader.Loader, loader.Reloc, sym.RelocVariant, loader.Sym, int64, []byte) int64 {
    	log.Fatalf("unexpected relocation variant")
    	return -1
    }
    
    func extreloc(target *ld.Target, ldr *loader.Loader, r loader.Reloc, s loader.Sym) (loader.ExtReloc, bool) {
    	switch rt := r.Type(); rt {
    	case objabi.R_ARM64_GOTPCREL,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/plive.go

    			fn = fn[pos+1:]
    		}
    		s += fmt.Sprintf("call to %s:", fn)
    	} else {
    		s += "indirect call:"
    	}
    
    	// Sort variable names for display. Variables aren't in any particular order, and
    	// the order can change by architecture, particularly with differences in regabi.
    	var names []string
    	for j, n := range lv.vars {
    		if live.Get(int32(j)) {
    			names = append(names, n.Sym().Name)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreator.java

            SourceFolder folder = new SourceFolder(relativePath, null);
            folder.setDir(dir);
            folder.setName(dir.getName());
            folder.setIncludes(getIncludesForTree(sourceSet, tree));
            folder.setExcludes(getExcludesForTree(sourceSet, tree));
            folder.setOutput(sourceSetOutputPaths.get(sourceSet));
            addScopeAttributes(folder, sourceSet, sourceSetUsages);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    * The latest https://gradle.org/install[Gradle distribution]
    ${toolChain.raw}
    
    == Create a project folder
    
    Gradle comes with a built-in task, called `init`, that initializes a new Gradle project in an empty folder.
    The `init` task uses the (also built-in) `wrapper` task to create a Gradle wrapper script, `gradlew`.
    
    The first step is to create a folder for the new project and change directory into it.
    
    [listing.terminal.sample-command]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  9. src/go/printer/testdata/comments.golden

    var _ = []T{
    	// lone comments
    	// in composite lit
    }
    
    var _ = [][]T{
    	{
    		// lone comments
    		// in composite lit
    	},
    }
    
    // TODO: gofmt doesn't add these tabs; make it so that these golden
    // tests run the printer in a way that it's exactly like gofmt.
    
    var _ = []T{	// lone comment
    }
    
    var _ = []T{	// lone comments
    	// in composite lit
    }
    
    func _()	{}
    
    func _()	{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

            // Unpack into temporary directory (but on same file system as our target directory location)
            File unpackFolder = unpack(jdkArchive);
            try {
                // Get the folder that is the real root of the unpacked JDK, skipping any archive root folder
                UnpackedRoot unpackedRoot = determineUnpackedRoot(unpackFolder);
    
                validateMetadataMatchesSpec(spec, uri, unpackedRoot.metadata);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top