Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 86 for revoked (0.21 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `A cat may look at a king,' said Alice.  `I've read that in
    some book, but I don't remember where.'
    
      `Well, it must be removed,' said the King very decidedly, and
    he called the Queen, who was passing at the moment, `My dear!  I
    wish you would have this cat removed!'
    
      The Queen had only one way of settling all difficulties, great
    or small.  `Off with his head!' she said, without even looking
    round.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			ExpectedThreeWay:       `{"array":[1,2,3],"complex":{"nested":true},"scalar":true}`,
    			ExpectedThreeWayResult: `{"array":[1,2,3],"complex":{"nested":true},"name":"foo","scalar":true}`,
    		},
    		"removed only": {
    			Original: `{"name":"foo","scalar":true,"complex":{"nested":true}}`,
    			Current:  `{"name":"foo","scalar":true,"complex":{"nested":true},"array":[1,2,3]}`,
    			Modified: `{"name":"foo"}`,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `A cat may look at a king,' said Alice.  `I've read that in
    some book, but I don't remember where.'
    
      `Well, it must be removed,' said the King very decidedly, and
    he called the Queen, who was passing at the moment, `My dear!  I
    wish you would have this cat removed!'
    
      The Queen had only one way of settling all difficulties, great
    or small.  `Off with his head!' she said, without even looking
    round.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  4. cmd/server_test.go

    }
    
    func (s *TestSuiteCommon) TestPutBucket(c *check) {
    	// generate a random bucket name.
    	bucketName := getRandomBucketName()
    	// Block 1: Testing for racy access
    	// The assertion is removed from this block since the purpose of this block is to find races
    	// The purpose this block is not to check for correctness of functionality
    	// Run the test with -race flag to utilize this
    	var wg sync.WaitGroup
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        auto &cond_yield = *cond_block.getTerminator();
    
        bool cond_forwards_args = cond_yield.getOperands().size() > 1;
    
        // Bit mask indicating which operands will be removed.
        llvm::BitVector removed_operand(old_num_operands);
    
        for (int op_idx : llvm::seq<int>(0, old_num_operands)) {
          auto body_arg = body_block.getArgument(op_idx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          }
        }
    
        // Verify that all operations except the terminator have exactly one
        // result of type supported by TFLite (or is a ControlType, which
        // will be removed later by ExtractControlEdges.)
        for (auto& inst : bb) {
          if (inst.hasTrait<mlir::OpTrait::IsTerminator>()) break;
    
          for (auto result : inst.getResults()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	// Pass list of absolute paths to vet,
    	// so that vet's error messages will use absolute paths,
    	// so that we can reformat them relative to the directory
    	// in which the go command is invoked.
    	vcfg := &vetConfig{
    		ID:           a.Package.ImportPath,
    		Compiler:     cfg.BuildToolchainName,
    		Dir:          a.Package.Dir,
    		GoFiles:      mkAbsFiles(a.Package.Dir, gofiles),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    	}
    }
    
    // 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)
    
    	db.SetMaxOpenConns(1)
    
    	ctx := context.Background()
    
    	c, err := db.Conn(ctx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		t.Errorf("unexpected delete options: %s", cmp.Diff(simpleStorage.deleteOptions, item))
    	}
    }
    
    func TestDeleteInvokesAdmissionControl(t *testing.T) {
    	// TODO: remove mutating deny when we removed it from the endpoint implementation and ported all plugins
    	for _, admit := range []admission.Interface{alwaysMutatingDeny{}, alwaysValidatingDeny{}} {
    		t.Logf("Testing %T", admit)
    
    		storage := map[string]rest.Storage{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // after UREM (case like quo, rem := z/y, z%y), then the second UDIV instruction becomes redundant.
    // The purpose of this rule is to have this extra UDIV instruction removed in CSE pass.
    (UMOD  <typ.UInt64> x y) => (MSUB <typ.UInt64> x y (UDIV <typ.UInt64> x y))
    (UMODW <typ.UInt32> x y) => (MSUBW <typ.UInt32> x y (UDIVW <typ.UInt32> x y))
    
    // 64-bit addition with carry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
Back to top