Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 385 for IsSame (0.1 sec)

  1. pilot/pkg/model/gateway.go

    // MergeGateways combines multiple gateways targeting the same workload into a single logical Gateway.
    // Note that today any Servers in the combined gateways listening on the same port must have the same protocol.
    // If servers with different protocols attempt to listen on the same port, one of the protocols will be chosen at random.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. src/encoding/json/encode.go

    // having that name, rather than being anonymous.
    // An anonymous struct field of interface type is treated the same as having
    // that type as its name, rather than being anonymous.
    //
    // The Go visibility rules for struct fields are amended for JSON when
    // deciding which field to marshal or unmarshal. If there are
    // multiple fields at the same level, and that level is the least
    // nested (and would therefore be the nesting level selected by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

       - Variant runtime2 has attributes {custom=c2, org.gradle.status=${MultipleVariantSelectionIntegrationTest.defaultStatus()}}""")
        }
    
        void "cannot select distinct variants of the same component by using different attributes if they have the same capabilities"() {
            given:
            repository {
                'org:test:1.0' {
                    variant('api') {
                        attribute('custom', 'c1')
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. src/database/sql/convert.go

    	}
    
    	return nvargs, nil
    }
    
    // convertAssign is the same as convertAssignRows, but without the optional
    // rows argument.
    //
    // convertAssign should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - ariga.io/entcache
    //
    // Do not remove or change the type signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            val firCall = ktCallExpression.getOrBuildFir(analysisSession.firResolveSession)?.unwrapSafeCall() as? FirCall ?: return emptyList()
            val parameter = firCall.findCorrespondingParameter(ktValueArgumentName.asName) ?: return emptyList()
            return listOfNotNull(parameter.buildSymbol(symbolBuilder))
        }
    
        private fun FirCall.findCorrespondingParameter(name: Name): FirValueParameter? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/response-model.md

        {!> ../../../docs_src/response_model/tutorial002.py!}
        ```
    
    Now, whenever a browser is creating a user with a password, the API will return the same password in the response.
    
    In this case, it might not be a problem, because it's the same user sending the password.
    
    But if we use the same model for another *path operation*, we could be sending our user's passwords to every client.
    
    !!! danger
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/region-control-flow-to-functional.mlir

    // CHECK-NEXT:   "tf.Abs"
    func.func @testSimple(%arg0: tensor<i1>, %arg1: tensor<*xf32>) -> tensor<*xf32> {
      // CHECK: "tf.If"
      // CHECK-NOT: attr1
      // CHECK-SAME: else_branch = @test_else_name
      // CHECK-SAME: then_branch = @test_then_name
      // CHECK-SAME: _attr0 = false
      // CHECK-SAME: _xla_propagate_compile_time_consts = true
      %0 = "tf.IfRegion"(%arg0) ({
        %1 = "tf.Abs"(%arg1) : (tensor<*xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 11:15:34 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/security/simple-oauth2.md

    If the passwords don't match, we return the same error.
    
    #### Password hashing
    
    "Hashing" means: converting some content (a password in this case) into a sequence of bytes (just a string) that looks like gibberish.
    
    Whenever you pass exactly the same content (exactly the same password) you get exactly the same gibberish.
    
    But you cannot convert from the gibberish back to the password.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    //   / |      |  |    / |
    // $0 $1     $1 rem  $0 rem
    // Note that named operators like 'sn' and 'sn1' are different values produced by
    // the same function in this case the sign function. Named values like 'div'
    // refer to the same value produced by the same function, in this case division.
    // Mathematical symbols do not indicate a re-use of the value.
    def : Pat<(MHLO_RoundOp
                (MHLO_SelectOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. pkg/controller/job/backoff_utils_test.go

    			backoffRecord: backoffRecord{
    				lastFailureTime:          &defaultTestTime.Time,
    				failuresAfterLastSuccess: 3,
    			},
    			currentTime:    defaultTestTime.Time,
    			defaultBackoff: 5 * time.Second,
    			maxBackoff:     700 * time.Second,
    			wantDuration:   20 * time.Second,
    		},
    		"eight failures; current time and failure time are same; backoff not exceeding maxBackoff": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top