Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for discarded (0.18 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                // Only runs once, as the transform execution in-memory cache is not discarded prior to execution time
                output.count(lib1Message) == 1
                output.count(lib2Message) == 1
            } else {
                // Transform is also executed at execution time, as the artifact has changed and the execution cache is discarded on load from cache
                output.count(lib1Message) == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    	// back, or for the associated context to be closed.
    	<-tx.ctx.Done()
    
    	// Discard and close the connection used to ensure the
    	// transaction is closed and the resources are released.  This
    	// rollback does nothing if the transaction has already been
    	// committed or rolled back.
    	// Do not discard the connection if the connection knows
    	// how to reset the session.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	chachaQR(A0, B0, C0, D0, T0)
    	shiftB0Right; shiftC0Right; shiftD0Right
    	DECQ          itr2
    	JNE           openSSEPreparePolyKey
    
    	// A0|B0 hold the Poly1305 32-byte key, C0,D0 can be discarded
    	PADDL ·chacha20Constants<>(SB), A0; PADDL state1Store, B0
    
    	// Clamp and store the key
    	PAND ·polyClampMask<>(SB), A0
    	MOVO A0, rStore; MOVO B0, sStore
    
    	// Hash AAD
    	MOVQ ad_len+80(FP), itr2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    		t.Fatal(err)
    	}
    	if selectName != insertName {
    		t.Fatalf("got %q want %q", selectName, insertName)
    	}
    }
    
    // TestConnIsValid verifies that a database connection that should be discarded,
    // is actually discarded and does not re-enter the connection pool.
    // If the IsValid method from *fakeConn is removed, this test will fail.
    func TestConnIsValid(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    between the quotes;
    in particular, backslashes have no special meaning and the string may
    contain newlines.
    Carriage return characters ('\r') inside raw string literals
    are discarded from the raw string value.
    </p>
    
    <p>
    Interpreted string literals are character sequences between double
    quotes, as in <code>&quot;bar&quot;</code>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        // individual read took longer than 100ms.
        assertThat(elapsedMillis).isLessThan(500L)
    
        // Do another request to confirm that the discarded connection was not pooled.
        assertContent("A", getResponse(newRequest("/")))
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
        // Connection is not pooled.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

                     this->getOperation()->getParentOp())) {
        if (&regionOp.getFinalize() == this->getOperation()->getParentRegion()) {
          // `finalize`'s returns get discarded.
          return MutableOperandRange(this->getOperation(), 0, 0);
        }
      }
      return MutableOperandRange(this->getOperation());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    // by reflect, the receiver is always an *Outer. Copying the modified receiver pointer
    // off the stack into the frame will store an *Inner there, and then if a garbage collection
    // happens to scan that argument frame before it is discarded, it will scan the *Inner
    // memory as if it were an *Outer. If the two have different memory layouts, the
    // collection will interpret the memory incorrectly.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

            "properties": {
              "policies": {
                "description": "policies is a list of potential scaling polices which can be used during scaling. At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid",
                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HPAScalingPolicy"
                    }
                  ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "valueExpression": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
Back to top