Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 606 for ungetc (0.17 sec)

  1. releasenotes/notes/40851.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 21 06:37:43 UTC 2022
    - 178 bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultSetProperty.java

        public SetProperty<T> convention(Provider<? extends Iterable<? extends T>> provider) {
            super.convention(provider);
            return this;
        }
    
        @Override
        public SetProperty<T> unset() {
            return uncheckedNonnullCast(super.unset());
        }
    
        @Override
        public SetProperty<T> unsetConvention() {
            return uncheckedNonnullCast(super.unsetConvention());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:58:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

         * [addSubjectAlternativeName]. If unset a random string will be used.
         *
         * [rfc_2818]: https://tools.ietf.org/html/rfc2818
         */
        fun commonName(cn: String) =
          apply {
            this.commonName = cn
          }
    
        /** Sets the certificate's organizational unit (OU). If unset this field will be omitted. */
        fun organizationalUnit(ou: String) =
          apply {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_no_gopath.txt

    # https://golang.org/issue/43938: 'go build' should succeed
    # if GOPATH and the variables needed for its default value
    # are all unset but not relevant to the specific command.
    
    env HOME=''
    env home=''
    env GOPATH=''
    
    go list -deps main.go
    stdout '^io$'
    
    -- main.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 22 15:46:33 UTC 2021
    - 296 bytes
    - Viewed (0)
  5. pkg/apis/core/validation/events.go

    		allErrs = append(allErrs, field.Invalid(field.NewPath("firstTimestamp"), "", "needs to be unset"))
    	}
    	if event.LastTimestamp.Time != zeroTime {
    		allErrs = append(allErrs, field.Invalid(field.NewPath("lastTimestamp"), "", "needs to be unset"))
    	}
    	if event.Count != 0 {
    		allErrs = append(allErrs, field.Invalid(field.NewPath("count"), "", "needs to be unset"))
    	}
    	if event.Source.Component != "" || event.Source.Host != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CompactHashMap.java

        int mask = hashTableMask();
        if (minimumTableSize < mask) { // smaller table size will always be less than current mask
          resizeTable(mask, minimumTableSize, UNSET, UNSET);
        }
      }
    
      @Override
      public void clear() {
        if (needsAllocArrays()) {
          return;
        }
        incrementModCount();
        Map<K, V> delegate = delegateOrNull();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  7. pkg/model/fips.go

    		if ctx.TlsParams == nil {
    			ctx.TlsParams = &tls.TlsParameters{}
    		}
    		ctx.TlsParams.TlsMinimumProtocolVersion = tls.TlsParameters_TLSv1_2
    		ctx.TlsParams.TlsMaximumProtocolVersion = tls.TlsParameters_TLSv1_2
    		// Default (unset) cipher suites field in the FIPS build of Envoy uses only the FIPS ciphers.
    		// Therefore, we only filter this field when it is set.
    		if len(ctx.TlsParams.CipherSuites) > 0 {
    			ciphers := []string{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/env_cross_build.txt

    # Test that the correct default GOEXPERIMENT is used when cross
    # building with GOENV (#46815).
    
    # Unset variables set by the TestScript harness. Users typically won't
    # explicitly configure these, and #46815 doesn't repro if they are.
    env GOOS=
    env GOARCH=
    env GOEXPERIMENT=
    
    env GOENV=windows-amd64
    go build internal/abi
    
    env GOENV=ios-arm64
    go build internal/abi
    
    env GOENV=linux-mips
    go build internal/abi
    
    -- windows-amd64 --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 537 bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/CompactHashMap.java

        int minimumTableSize = CompactHashing.tableSize(size);
        int mask = hashTableMask();
        if (minimumTableSize < mask) { // smaller table size will always be less than current mask
          resizeTable(mask, minimumTableSize, UNSET, UNSET);
        }
      }
    
      @Override
      public void clear() {
        if (needsAllocArrays()) {
          return;
        }
        incrementModCount();
        Map<K, V> delegate = delegateOrNull();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_link_x_import_path_escape.txt

    stderr '^linkXworked$'
    
    -- go.mod --
    module my.pkg
    
    go 1.16
    -- main/main.go --
    package main
    
    import "my.pkg"
    
    func main() {
    	println(pkg.Text)
    }
    -- pkg.go --
    package pkg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 341 bytes
    - Viewed (0)
Back to top