Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 158 for Concatenates (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	fs.StringVar(&s.ServerCert.CertKey.CertFile, "tls-cert-file", s.ServerCert.CertKey.CertFile, ""+
    		"File containing the default x509 Certificate for HTTPS. (CA cert, if any, concatenated "+
    		"after server cert). If HTTPS serving is enabled, and --tls-cert-file and "+
    		"--tls-private-key-file are not provided, a self-signed certificate and key "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

        }
    
        /**
         * Returns a representation of the file path with an alternate extension.  If the file path has no extension,
         * then the provided extension is simply concatenated.  If the file path has an extension, the extension is
         * stripped and replaced with the provided extension.
         *
         * e.g. with a provided extension of ".bar"
         * foo -> foo.bar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/compress/gzip/gzip_test.go

    	}
    
    	n3 := buf.Len()
    	if n2 == n3 {
    		t.Fatal("Flush didn't flush any data")
    	}
    
    	if err := w.Close(); err != nil {
    		t.Fatal(err)
    	}
    
    }
    
    // Multiple gzip files concatenated form a valid gzip file.
    func TestConcat(t *testing.T) {
    	var buf bytes.Buffer
    	w := NewWriter(&buf)
    	w.Write([]byte("hello "))
    	w.Close()
    	w = NewWriter(&buf)
    	w.Write([]byte("world\n"))
    	w.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:10:06 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. operator/cmd/mesh/manifest-generate.go

    	for k, v := range installTree {
    		componentName := string(k)
    		// In cases (like gateways) where multiple instances can exist, concatenate the manifests and apply as one.
    		ym := strings.Join(manifests[k], helm.YAMLSeparator)
    		l.LogAndPrintf("Rendering: %s", componentName)
    		dirName := filepath.Join(outputDir, componentName)
    		if !dryRun {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. src/compress/flate/huffman_bit_writer.go

    	if n != 0 {
    		w.write(w.bytes[:n])
    	}
    	w.nbytes = 0
    	w.write(bytes)
    }
    
    // RFC 1951 3.2.7 specifies a special run-length encoding for specifying
    // the literal and offset lengths arrays (which are concatenated into a single
    // array).  This method generates that run-length encoding.
    //
    // The result is written into the codegen array, and the frequencies
    // of each code is written into the codegenFreq array.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

        frame.writeAll(headerBlock)
    
        // Check writer sends the same bytes.
        assertThat(sendHeaderFrames(false, sentHeaders)).isEqualTo(frame)
    
        // Reading the above frames should result in a concatenated headerBlock.
        reader.nextFrame(
          requireSettings = false,
          object : BaseTestHandler() {
            override fun headers(
              inFinished: Boolean,
              streamId: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/script/cmds.go

    			return []int{i}
    		}
    		if arg == "--" {
    			return []int{i + 1}
    		}
    	}
    	return nil
    }
    
    // Cat writes the concatenated contents of the named file(s) to the script's
    // stdout buffer.
    func Cat() Cmd {
    	return Command(
    		CmdUsage{
    			Summary: "concatenate files and print to the script's stdout buffer",
    			Args:    "files...",
    		},
    		func(s *State, args ...string) (WaitFunc, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    			value = bindingAnnotations[0]
    		} else {
    			// Multiple distinct values can exist when binding params are used in the valueExpression of an auditAnnotation.
    			// When this happens, the values are concatenated into a comma-separated list.
    			value = strings.Join(bindingAnnotations, ", ")
    		}
    		if err := attributes.AddAnnotation(policyName+"/"+key, value); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. docs/es/docs/python-types.md

    * Toma un `first_name` y un `last_name`.
    * Convierte la primera letra de cada uno en una letra mayúscula con `title()`.
    * Las <abbr title="las junta como si fuesen una. Con el contenido de una después de la otra. En inglés: concatenate.">concatena</abbr> con un espacio en la mitad.
    
    ```Python hl_lines="2"
    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    ### Edítalo
    
    Es un programa muy simple.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/os/os_unix_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	buf, err := ReadFile(aa.Name())
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if got := string(buf); got != want {
    		t.Errorf("files not concatenated: got %q, want %q", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:32:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top