Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 184 for filelink (0.28 sec)

  1. src/cmd/link/internal/ld/macho.go

    		s6b.SetSize(s6b.Size() + n)
    		size += n
    	}
    
    	if size > 0 {
    		linkoff = Rnd(int64(uint64(HEADR)+Segtext.Length), *FlagRound) + Rnd(int64(Segrelrodata.Filelen), *FlagRound) + Rnd(int64(Segdata.Filelen), *FlagRound) + Rnd(int64(Segdwarf.Filelen), *FlagRound)
    		ctxt.Out.SeekSet(linkoff)
    
    		ctxt.Out.Write(ldr.Data(s1))
    		ctxt.Out.Write(ldr.Data(s2))
    		ctxt.Out.Write(ldr.Data(s3))
    		ctxt.Out.Write(ldr.Data(s4))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/lockedfile/internal/filelock/filelock_fcntl.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build aix || (solaris && !illumos)
    
    // This code implements the filelock API using POSIX 'fcntl' locks, which attach
    // to an (inode, process) pair rather than a file descriptor. To avoid unlocking
    // files prematurely when the same file is opened through different descriptors,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. cmd/sftp-server-driver.go

    //
    // - sftp.Fileread
    // - sftp.Filewrite
    // - sftp.Filelist
    // - sftp.Filecmd
    func NewSFTPDriver(perms *ssh.Permissions) sftp.Handlers {
    	handler := &sftpDriver{endpoint: fmt.Sprintf("127.0.0.1:%s", globalMinioPort), permissions: perms}
    	return sftp.Handlers{
    		FileGet:  handler,
    		FilePut:  handler,
    		FileCmd:  handler,
    		FileList: handler,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCacheBuilderTest.groovy

    import static org.gradle.cache.CacheCleanupStrategy.NO_CLEANUP
    import static org.gradle.cache.FileLockManager.LockMode.OnDemand
    import static org.gradle.cache.FileLockManager.LockMode.Shared
    import static org.gradle.cache.internal.filelock.DefaultLockOptions.mode
    
    class DefaultCacheBuilderTest extends Specification {
        @Rule
        public final TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/bug_report.yaml

    description: Something is not working as expected
    labels: ["type=defect"]
    body:
      - type: markdown
        attributes:
          value: >
            Thank you for filing a bug report. Please help us identify and resolve the bug by filling
            out the following fields.
    
      - type: textarea
        attributes:
          label: Description
          description: Please describe the issue you encountered.
        validations:
          required: true
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 27 19:53:41 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    			if err := verifyNoEvent(ok, event); err != nil {
    				t.Error(err)
    			}
    		})
    	}
    }
    
    func TestCacheIntervalNextFromWatchCache(t *testing.T) {
    	// Have the capacity such that it facilitates
    	// filling the interval buffer more than once
    	// completely and then some more - 10 here is
    	// arbitrary.
    	const capacity = 2*bufferSize + 10
    
    	cases := []struct {
    		name string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/authentication_dynamic_request_header.go

    // DynamicRequestHeaderController combines DynamicCAFromConfigMapController and RequestHeaderAuthRequestController
    // into one controller for dynamically filling RequestHeaderConfig struct
    type DynamicRequestHeaderController struct {
    	*dynamiccertificates.ConfigMapCAController
    	*headerrequest.RequestHeaderAuthRequestController
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 14:37:01 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/objdump/main.go

    // stopping at the end address. The start and end addresses are program
    // counters written in hexadecimal with optional leading 0x prefix.
    // In this mode, objdump prints a sequence of stanzas of the form:
    //
    //	file:line
    //	 address: assembly
    //	 address: assembly
    //	 ...
    //
    // Each stanza gives the disassembly for a contiguous range of addresses
    // all mapped to the same original source file and line number.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	var result []WebListInstruction
    	var curCalls []callID
    	for i, an := range assembly {
    		var fileline string
    		if an.file != "" {
    			fileline = fmt.Sprintf("%s:%d", template.HTMLEscapeString(filepath.Base(an.file)), an.line)
    		}
    		text := strings.Repeat(" ", srcIndent+4+4*len(an.inlineCalls)) + an.instruction
    		inst := WebListInstruction{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/counter/stackcounter.go

    		}
    		var loc string
    		if fr.Func != nil {
    			// Use function-relative line numbering.
    			// f:+2 means two lines into function f.
    			// f:-1 should never happen, but be conservative.
    			_, entryLine := fr.Func.FileLine(fr.Entry)
    			loc = fmt.Sprintf("%s.%s:%+d", path, fname, fr.Line-entryLine)
    		} else {
    			// The function is non-Go code or is fully inlined:
    			// use absolute line number within enclosing file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top