Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for filelink (0.28 sec)

  1. src/internal/poll/fd_windows.go

    	ZeroReadIsEOF bool
    
    	// Whether this is a file rather than a network socket.
    	isFile bool
    
    	// The kind of this file.
    	kind fileKind
    }
    
    // fileKind describes the kind of file.
    type fileKind byte
    
    const (
    	kindNet fileKind = iota
    	kindFile
    	kindConsole
    	kindPipe
    )
    
    // logInitFD is set by tests to enable file descriptor initialization logging.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

          }
        }
      }
    
      @Throws(FileNotFoundException::class)
      private fun newJournalWriter(): BufferedSink {
        val fileSink = fileSystem.appendingSink(journalFile)
        val faultHidingSink =
          FaultHidingSink(fileSink) {
            ******@****.***ThreadHoldsLock()
            hasJournalErrors = true
          }
        return faultHidingSink.buffer()
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_controller.go

    	UsernameHeaders     []string
    	GroupHeaders        []string
    	ExtraHeaderPrefixes []string
    	AllowedClientNames  []string
    }
    
    // RequestHeaderAuthRequestController a controller that exposes a set of methods for dynamically filling parts of RequestHeaderConfig struct.
    // The methods are sourced from the config map which is being monitored by this controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/cpu_assignment_test.go

    		},
    		{
    			"allocate 4 full cores with 3 coming from the first NUMA node (filling it up) and 1 coming from the second NUMA node",
    			topoDualSocketHT,
    			mustParseCPUSet(t, "0-11"),
    			8,
    			"",
    			mustParseCPUSet(t, "0,6,2,8,4,10,1,7"),
    		},
    		{
    			"allocate 32 full cores with 30 coming from the first 3 NUMA nodes (filling them up) and 2 coming from the fourth NUMA node",
    			topoDualSocketMultiNumaPerSocketHT,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 17:31:37 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  5. src/runtime/symtab.go

    		fi := (*funcinl)(unsafe.Pointer(fn))
    		return fi.entry
    	}
    	return fn.funcInfo().entry()
    }
    
    // FileLine returns the file name and line number of the
    // source code corresponding to the program counter pc.
    // The result will not be accurate if pc is not a program
    // counter within f.
    func (f *Func) FileLine(pc uintptr) (file string, line int) {
    	fn := f.raw()
    	if fn.isInlined() { // inlined version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    // synthetic service for the MCS host (i.e. clusterset.local). The aggregate.Controller will then
    // merge together the MCS services from all the clusters, filling out the full map of Cluster IPs.
    //
    // The synthetic MCS service is a copy of the real k8s Service (e.g. cluster.local) with the same
    // namespaced name, but with the hostname and VIPs changed to the appropriate ClusterSet values.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. maven-model-builder/src/site/apt/index.apt

       ({{{./xref/org/apache/maven/model/validation/DefaultModelValidator.html}source}})
    
       []
    
     []
    
    
    * Inheritance Assembly
    
      Inheritance Assembly consists in filling current model empty fields with values taken from parent model.
      It is done in <<<InheritanceAssembler>>> ({{{./apidocs/org/apache/maven/model/inheritance/InheritanceAssembler.html}javadoc}}),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      // +optional
      repeated string resourceNames = 4;
    }
    
    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    // spec.namespace means "in all namespaces".  Self is a special case, because users should always be able
    // to check whether they can perform an action
    message SelfSubjectAccessReview {
      // Standard list metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated string resourceNames = 4;
    }
    
    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    // spec.namespace means "in all namespaces".  Self is a special case, because users should always be able
    // to check whether they can perform an action
    message SelfSubjectAccessReview {
      // Standard list metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/cmd/go/script_test.go

    							t.Errorf("rewriting test file: %v", err)
    						}
    					}()
    				}
    			}
    
    			// Note: Do not use filepath.Base(file) here:
    			// editors that can jump to file:line references in the output
    			// will work better seeing the full path relative to cmd/go
    			// (where the "go test" command is usually run).
    			scripttest.Run(t, engine, s, file, bytes.NewReader(a.Comment))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top