Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,045 for creading (0.23 sec)

  1. cmd/kube-proxy/app/server_other.go

    // config file, to apply platform-specific default values to config.
    func (o *Options) platformApplyDefaults(config *proxyconfigapi.KubeProxyConfiguration) {
    }
    
    var unsupportedError = fmt.Errorf(runtime.GOOS + "/" + runtime.GOARCH + "is unsupported")
    
    // platformSetup is called after setting up the ProxyServer, but before creating the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pkg/test/csrctrl/signer/ca_provider.go

    	if err != nil {
    		return fmt.Errorf("error reading CA cert file %q: %v", p.caLoader.CertFile, err)
    	}
    	if len(certs) != 1 {
    		return fmt.Errorf("error reading CA cert file %q: expected 1 certificate, found %d", p.caLoader.CertFile, len(certs))
    	}
    
    	key, err := keyutil.ParsePrivateKeyPEM(keyPEM)
    	if err != nil {
    		return fmt.Errorf("error reading CA key file %q: %v", p.caLoader.KeyFile, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 27 08:14:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  3. src/os/dir.go

    	slices.SortFunc(dirs, func(a, b DirEntry) int {
    		return bytealg.CompareString(a.Name(), b.Name())
    	})
    	return dirs, err
    }
    
    // CopyFS copies the file system fsys into the directory dir,
    // creating dir if necessary.
    //
    // Newly created directories and files have their default modes
    // where any bits from the file in fsys that are not part of the
    // standard read, write, and execute permissions will be zeroed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/cache/secretcache_test.go

    	if err != nil {
    		t.Fatalf("Error reading the cert chain file: %v", err)
    	}
    	privateKey, err := os.ReadFile(sc.existingCertificateFile.PrivateKeyPath)
    	if err != nil {
    		t.Fatalf("Error reading the private key file: %v", err)
    	}
    	rootCert, err := os.ReadFile(sc.existingCertificateFile.CaCertificatePath)
    	if err != nil {
    		t.Fatalf("Error reading the root cert file: %v", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

                }
                if (item2.getReadings().length > i) {
                    for (final String reading : item2.getReadings()[i]) {
                        if (!list.contains(reading)) {
                            list.add(reading);
                        }
                    }
                }
                mergedItem.readings[i] = list.toArray(new String[list.size()]);
            }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. pkg/volume/volume_linux_test.go

    			if err != nil {
    				t.Fatalf("error creating temp dir: %v", err)
    			}
    
    			defer os.RemoveAll(tmpDir)
    
    			info, err := os.Lstat(tmpDir)
    			if err != nil {
    				t.Fatalf("error reading permission of tmpdir: %v", err)
    			}
    
    			stat, ok := info.Sys().(*syscall.Stat_t)
    			if !ok || stat == nil {
    				t.Fatalf("error reading permission stats for tmpdir: %s", tmpDir)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java

            final Map<String, Object> secondLine = new HashMap<>();
    
            secondLine.put("text", item.getText());
    
            // reading
            final String[][] readings = item.getReadings();
            for (int i = 0; i < readings.length; i++) {
                secondLine.put("reading_" + i, readings[i]);
            }
    
            secondLine.put("fields", item.getFields());
            secondLine.put("queryFreq", item.getQueryFreq());
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/mktests.go

    }
    
    func (ctx *context) runGenerators() error {
    	generators, err := filepath.Glob("./generators/*.go")
    	if err != nil {
    		return fmt.Errorf("reading generators: %v", err)
    	}
    	genroot := "./tests"
    
    	if err := os.MkdirAll(genroot, 0777); err != nil {
    		return fmt.Errorf("creating generated root: %v", err)
    	}
    	for _, path := range generators {
    		name := filepath.Base(path)
    		name = name[:len(name)-len(filepath.Ext(name))]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/settings.md

    ```Python hl_lines="9-10  13  21"
    {!../../../docs_src/settings/app02/test_main.py!}
    ```
    
    In the dependency override we set a new value for the `admin_email` when creating the new `Settings` object, and then we return that new object.
    
    Then we can test that it is used.
    
    ## Reading a `.env` file
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. cmd/kube-proxy/app/server_windows.go

    	}
    	if config.Winkernel.RootHnsEndpointName == "" {
    		config.Winkernel.RootHnsEndpointName = "cbr0"
    	}
    }
    
    // platformSetup is called after setting up the ProxyServer, but before creating the
    // Proxier. It should fill in any platform-specific fields and perform other
    // platform-specific setup.
    func (s *ProxyServer) platformSetup(ctx context.Context) error {
    	// Preserve backward-compatibility with the old secondary IP behavior
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top