Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for setHeads (0.24 sec)

  1. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/GitVersionControlSystem.java

            try {
                return configureTransport(Git.lsRemoteRepository()).setRemote(normalizeUri(gitSpec.getUrl())).setTags(tags).setHeads(heads).call();
            } catch (URISyntaxException | GitAPIException e) {
                throw wrapGitCommandException("ls-remote", gitSpec.getUrl(), null, e);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/shift/dead.go

    func updateDead(info *types.Info, dead map[ast.Node]bool, node ast.Node) {
    	if dead[node] {
    		// The node is already marked as dead.
    		return
    	}
    
    	// setDead marks the node and all the children as dead.
    	setDead := func(n ast.Node) {
    		ast.Inspect(n, func(node ast.Node) bool {
    			if node != nil {
    				dead[node] = true
    			}
    			return true
    		})
    	}
    
    	switch stmt := node.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 06 18:23:38 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultConfigurableUserClassFilePermissions.java

        @Inject
        public DefaultConfigurableUserClassFilePermissions(int unixNumeric) {
            setRead(isRead(unixNumeric));
            setWrite(isWrite(unixNumeric));
            setExecute(isExecute(unixNumeric));
        }
    
        @Override
        public void unix(String unixSymbolic) {
            setRead(isRead(unixSymbolic));
            setWrite(isWrite(unixSymbolic));
            setExecute(isExecute(unixSymbolic));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/hoist_broadcast_read.cc

          }
          is_cpu_read = parsed_name.type == kCpuDeviceType;
          return success();
        }
      }
      is_cpu_read = false;
      return success();
    }
    
    // Get the reads to hoist in the `replicate`.
    LogicalResult GetReads(FuncOp func, ReplicateOp replicate,
                           llvm::SmallVector<ReadVariableOp, 4>& reads) {
      for (Operation& op : replicate.getBody().front()) {
        if (auto read = llvm::dyn_cast<ReadVariableOp>(&op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. pkg/volume/git_repo/git_repo.go

    			strings.Join(args, " "), output, err)
    	}
    
    	files, err := ioutil.ReadDir(dir)
    	if err != nil {
    		return err
    	}
    
    	if len(b.revision) == 0 {
    		// Done!
    		volumeutil.SetReady(b.getMetaDir())
    		return nil
    	}
    
    	var subdir string
    
    	switch {
    	case len(b.target) != 0 && filepath.Clean(b.target) == ".":
    		// if target dir is '.', use the current dir
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableUserClassFilePermissions.java

         * <p>
         * Read access grants the capability to view the contents of a file,
         * or to list the contents of a directory.
         */
        void setRead(boolean read);
    
        /**
         * Enables or disables write access to a file or directory for a certain class of users.
         * <p>
         * Write access grants the capability to modify or remove the contents of a file,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top