Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 121 for predates (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    val myOtherNewProperty by extra { "calculated initial value" }  // <2>
    
    val myProperty: String by extra  // <3>
    val myNullableProperty: String? by extra  // <4>
    ----
    <1> Creates a new extra property called `myNewProperty` in the current context (the project in this case) and initializes it with the value `"initial value"`, which also determines the property's _type_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

          checkNotNull(certificateChainCleaner) { "certificateChainCleaner == null" }
          checkNotNull(x509TrustManager) { "x509TrustManager == null" }
        }
      }
    
      /** Prepares the [request] to be executed at some point in the future. */
      override fun newCall(request: Request): Call = RealCall(this, request, forWebSocket = false)
    
      /** Uses [request] to connect a new web socket. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  3. plugin/pkg/admission/limitranger/admission_test.go

    	res := api.VolumeResourceRequirements{}
    	res.Requests = requests
    	res.Limits = limits
    	return res
    }
    
    // createLimitRange creates a limit range with the specified data
    func createLimitRange(limitType api.LimitType, min, max, defaultLimit, defaultRequest, maxLimitRequestRatio api.ResourceList) corev1.LimitRange {
    	internalLimitRage := api.LimitRange{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier.go

    	isIPv6 := proxier.iptables.IsIPv6()
    	if !isIPv6 && proxier.localhostNodePorts {
    		// Kube-proxy's use of `route_localnet` to enable NodePorts on localhost
    		// creates a security hole (https://issue.k8s.io/90259) which this
    		// iptables rule mitigates.
    
    		// NOTE: kubelet creates an identical copy of this rule. If you want to
    		// change this rule in the future, you MUST do so in a way that will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    	l.SetSymPkg(dst, l.SymPkg(src))
    	// TODO: other attributes?
    }
    
    // CreateExtSym creates a new external symbol with the specified name
    // without adding it to any lookup tables, returning a Sym index for it.
    func (l *Loader) CreateExtSym(name string, ver int) Sym {
    	return l.newExtSym(name, ver)
    }
    
    // CreateStaticSym creates a new static symbol with the specified name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [CAUTION]
    ====
    Never use `new File(relative path)` unless passed to `file()` or `files()` or `from()` or other methods defined in terms of `file()` or `files()`.
    Otherwise, this creates a path relative to the current working directory (CWD).
    Gradle can make no guarantees about the location of the CWD, which means builds that rely on it may break at any time.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    			// to be compatible with the one used in expand_calls.go
    			// as opposed to decompose.go. The expand calls code just
    			// takes the base name and creates an offset into it,
    			// without using the SplitOf/SplitOffset fields. The code
    			// in decompose.go does the opposite -- it creates a
    			// LocalSlot object with "Off" set to zero, but with
    			// SplitOf pointing to a parent slot, and SplitOffset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. src/crypto/x509/x509.go

    	return signature, nil
    }
    
    // emptyASN1Subject is the ASN.1 DER encoding of an empty Subject, which is
    // just an empty SEQUENCE.
    var emptyASN1Subject = []byte{0x30, 0}
    
    // CreateCertificate creates a new X.509 v3 certificate based on a template.
    // The following members of template are currently used:
    //
    //   - AuthorityKeyId
    //   - BasicConstraintsValid
    //   - CRLDistributionPoints
    //   - DNSNames
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      }
      auto op = builder.create<tfl::ExternalConstOp>(
          loc, shaped_type, builder.getI32IntegerAttr(buffer_index));
      return op.getOperation();
    }
    
    // TODO(b/172664358): Creates a new op instead of reusing constant op.
    // Creates a constant op with "tfl.is_variable" attribute to represent stateful
    // variable. The function static variable `stateful_variable_idx` is used as a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/MapsTest.java

      @GwtIncompatible // reflection
      @AndroidIncompatible // relies on assumptions about OpenJDK
      public void testNewHashMapWithExpectedSize_wontGrow() throws Exception {
        // before jdk7u40: creates one-bucket table
        // after  jdk7u40: creates empty table
        assertTrue(bucketsOf(Maps.newHashMapWithExpectedSize(0)) <= 1);
    
        for (int size = 1; size < 200; size++) {
          assertWontGrow(
              size,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
Back to top