Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 100 for readImg (0.19 sec)

  1. pkg/kubeapiserver/admission/config.go

    func (c *Config) New() ([]admission.PluginInitializer, error) {
    	var cloudConfig []byte
    	if c.CloudConfigFile != "" {
    		var err error
    		cloudConfig, err = os.ReadFile(c.CloudConfigFile)
    		if err != nil {
    			klog.Fatalf("Error reading from cloud configuration file %s: %#v", c.CloudConfigFile, err)
    		}
    	}
    
    	return []admission.PluginInitializer{NewPluginInitializer(cloudConfig)}, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. test_docs.sh

    # Generate the API docs
    ./gradlew dokkaHtmlMultiModule
    
    mv ./build/dokka/htmlMultiModule docs/4.x
    
    # Copy in special files that GitHub wants in the project root.
    cat README.md | grep -v 'project website' > docs/index.md
    cp CHANGELOG.md docs/changelogs/changelog.md
    cp CONTRIBUTING.md docs/contribute/contributing.md
    
    # Build the site locally
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:52:16 UTC 2024
    - 718 bytes
    - Viewed (0)
  3. src/testing/fstest/mapfs.go

    // An implication is that file system operations must not run concurrently
    // with changes to the map, which would be a race.
    // Another implication is that opening or reading a directory requires
    // iterating over the entire map, so a MapFS should typically be used with not more
    // than a few hundred entries or directory reads.
    type MapFS map[string]*MapFile
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. releasenotes/notes/50933.yaml

    issue:
    - 50933
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 13:58:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. docs/auditlog/auditlog-echo.go

    	flag.IntVar(&port, "port", 8080, "Port to listen on")
    }
    
    func mainHandler(w http.ResponseWriter, r *http.Request) {
    	body, err := io.ReadAll(r.Body)
    	defer r.Body.Close()
    	if err != nil {
    		log.Printf("Error reading request body: %v", err)
    		w.WriteHeader(http.StatusBadRequest)
    		return
    	}
    
    	log.Printf(">>> %s %s\n", r.Method, r.URL.Path)
    	var out bytes.Buffer
    	json.Indent(&out, body, "", "    ")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 21:31:13 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/mode.go

    //
    // When mode is "on", or "local", telemetry data is written to the local file
    // system and may be inspected with the [gotelemetry] command.
    //
    // If an error occurs while reading the telemetry mode from the file system,
    // Mode returns the default value "local".
    //
    // [gotelemetry]: https://pkg.go.dev/golang.org/x/telemetry/cmd/gotelemetry
    func Mode() string {
    	mode, _ := telemetry.Default.Mode()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. tools/docker.yaml

      dockerfile: helloworld/Dockerfile.proxyv2
      files:
      # Include a static file
      # Inside the Dockerfile, this is referenced by the base name (README.md), not the full name.
      - samples/README.md
      targets:
      # Build a file with make, then include as a static file
      - ${TARGET_OUT_LINUX}/helloworld
    
    images:
    
    # Base images
    - name: base
      dockerfile: docker/Dockerfile.base
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server_other.go

    import (
    	"context"
    	"fmt"
    	"runtime"
    
    	"k8s.io/kubernetes/pkg/proxy"
    	proxyconfigapi "k8s.io/kubernetes/pkg/proxy/apis/config"
    )
    
    // platformApplyDefaults is called after parsing command-line flags and/or reading the
    // config file, to apply platform-specific default values to config.
    func (o *Options) platformApplyDefaults(config *proxyconfigapi.KubeProxyConfiguration) {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/internal/coverage/cfile/ts_test.go

    	if b, err := cmd.CombinedOutput(); err != nil {
    		t.Fatalf("go run failed (%v): %s", err, b)
    	}
    
    	// Pick out the generated meta-data file.
    	files, err := os.ReadDir(dstdir)
    	if err != nil {
    		t.Fatalf("reading %s: %v", dstdir, err)
    	}
    	for _, f := range files {
    		if strings.HasPrefix(f.Name(), "covmeta") {
    			return filepath.Join(dstdir, f.Name()), "hello.go:"
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinPlatformComponent.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * A **platform component** as defined by the Platform Interface (see the README).
     *
     * Mandatory platform components must be implemented by a platform to fully support the Analysis API in the desired environment. A few
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top