Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for fileFor (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

                        collectFingerprintForReusedProjects(host, reusedProjects)
                    }
                }
            }
            cacheFingerprintController.commitFingerprintTo(layout.fileFor(StateType.BuildFingerprint), layout.fileFor(StateType.ProjectFingerprint))
        }
    
        private
        fun startCollectingCacheFingerprint() {
            cacheFingerprintController.maybeStartCollectingFingerprint(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Signature.java

         * @see SignatureType#fileFor(File)
         *
         * FIXME Nullability consistency with superclass.
         */
        @Override
        @OutputFile
        public File getFile() {
            final File toSign = getToSign();
            final SignatureType signatureType = getSignatureType();
            return toSign != null && signatureType != null
                ? signatureType.fileFor(toSign)
                : null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/resolver.go

    // filename returns a filename suitable for debugging output.
    func (check *Checker) filename(fileNo int) string {
    	file := check.files[fileNo]
    	if pos := file.Pos(); pos.IsKnown() {
    		// return check.fset.File(pos).Name()
    		// TODO(gri) do we need the actual file name here?
    		return pos.RelFilename()
    	}
    	return fmt.Sprintf("file[%d]", fileNo)
    }
    
    func (check *Checker) importPackage(pos syntax.Pos, path, dir string) *Package {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. src/go/types/resolver.go

    }
    
    // filename returns a filename suitable for debugging output.
    func (check *Checker) filename(fileNo int) string {
    	file := check.files[fileNo]
    	if pos := file.Pos(); pos.IsValid() {
    		return check.fset.File(pos).Name()
    	}
    	return fmt.Sprintf("file[%d]", fileNo)
    }
    
    func (check *Checker) importPackage(at positioner, path, dir string) *Package {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/configcontroller.go

    	}
    	return crdclient.New(s.kubeClient, opts)
    }
    
    func (s *Server) makeFileMonitor(fileDir string, domainSuffix string, configController model.ConfigStore) error {
    	fileSnapshot := configmonitor.NewFileSnapshot(fileDir, collections.Pilot, domainSuffix)
    	fileMonitor := configmonitor.NewMonitor("file-monitor", configController, fileSnapshot.ReadConfigFiles, fileDir)
    
    	// Defer starting the file monitor until after the service is created.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server_test.go

    					HTTPAddr:       ":0",
    					MonitoringAddr: ":0",
    					GRPCAddr:       ":0",
    					SecureGRPCAddr: ":0",
    					TLSOptions:     *c.tlsOptions,
    				}
    				p.RegistryOptions = RegistryOptions{
    					FileDir: configDir,
    				}
    
    				p.ShutdownDuration = 1 * time.Millisecond
    			})
    			g := NewWithT(t)
    			s, err := NewServer(args, func(s *Server) {
    				s.kubeClient = kube.NewFakeClient()
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/os/types_windows.go

    //
    // See https://learn.microsoft.com/en-us/windows/win32/api/winnt/nf-winnt-isreparsetagnamesurrogate
    // and https://learn.microsoft.com/en-us/windows/win32/fileio/reparse-point-tags.
    func (fs *fileStat) isReparseTagNameSurrogate() bool {
    	// True for IO_REPARSE_TAG_SYMLINK and IO_REPARSE_TAG_MOUNT_POINT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/runtime/symtab.go

    	if !f.valid() {
    		return "?", 0
    	}
    	fileno, _ := pcvalue(f, f.pcfile, targetpc, strict)
    	line, _ = pcvalue(f, f.pcln, targetpc, strict)
    	if fileno == -1 || line == -1 || int(fileno) >= len(datap.filetab) {
    		// print("looking for ", hex(targetpc), " in ", funcname(f), " got file=", fileno, " line=", lineno, "\n")
    		return "?", 0
    	}
    	file = funcfile(f, fileno)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/preflight/checks_test.go

    				rt.name,
    				rt.expectedError,
    				(len(output) > 0),
    			)
    		}
    	}
    }
    
    func TestDirAvailableCheck(t *testing.T) {
    	fileDir, err := os.MkdirTemp("", "dir-avail-check")
    	if err != nil {
    		t.Fatalf("failed creating directory: %v", err)
    	}
    	defer os.RemoveAll(fileDir)
    	var tests = []struct {
    		name          string
    		check         DirAvailableCheck
    		expectedError bool
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    		return nil, err
    	}
    	return buf[0 : n/siz], nil
    }
    
    func direntIno(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(Dirent{}.Fileno), unsafe.Sizeof(Dirent{}.Fileno))
    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))
    }
    
    func direntNamlen(buf []byte) (uint64, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top