Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for eraseOp (0.18 sec)

  1. cmd/bucket-replication-utils.go

    type VersionPurgeStatusType string
    
    const (
    	// Pending - versioned delete replication is pending.
    	Pending VersionPurgeStatusType = "PENDING"
    
    	// Complete - versioned delete replication is now complete, erase version on disk.
    	Complete VersionPurgeStatusType = "COMPLETE"
    
    	// Failed - versioned delete replication failed.
    	Failed VersionPurgeStatusType = "FAILED"
    )
    
    // Empty returns true if purge status was not set.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/kernels/xla_ops.cc

        mutex_lock l(mutex_);
        auto it = closures_.find(key);
        DCHECK(it != closures_.end());
        ExecutableClosure<ExecutableType, ClientType> value = std::move(it->second);
        closures_.erase(it);
        return value;
      }
    
      static ExecutableClosureStore* Global() {
        static ExecutableClosureStore* instance = new ExecutableClosureStore;
        return instance;
      }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

              // write acts as a barrier for those IDs).
              VLOG(4) << "      Clearing resource access info for ID " << id;
              per_resource_access_info_.erase(id);
            }
          }
        }
      }
      // Now update access info for `resource_id`.
      auto& access_info = per_resource_access_info_[resource_id];
      if (read_only) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. src/crypto/x509/x509_test.go

    	}
    
    	template.AuthorityKeyId = []byte{1, 2, 3, 4}
    	if cert := serialiseAndParse(t, template); len(cert.AuthorityKeyId) == 0 {
    		t.Fatalf("self-signed certificate erased explicit authority key id")
    	}
    }
    
    func TestNoSubjectKeyIdInCert(t *testing.T) {
    	template := &Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject: pkix.Name{
    			CommonName: "Σ Acme Co",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_server_test.go

    		cipherSuites:       []uint16{TLS_RSA_WITH_RC4_128_SHA},
    		compressionMethods: []uint8{compressionNone},
    		serverName:         expectedServerName,
    	}
    
    	serverConfig := testConfig.Clone()
    	// Erase the server's cipher suites to ensure the handshake fails.
    	serverConfig.CipherSuites = nil
    
    	c, s := localPipe(t)
    	go func() {
    		cli := Client(c, testConfig)
    		cli.vers = clientHello.vers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      bool EmptyQueue() const { return queue_.empty(); }
    
      // Returns function from the front of the work queue.
      func::FuncOp pop_front() {
        func::FuncOp ret = queue_.front();
        queue_.pop();
        queue_set_.erase(ret);
        return ret;
      }
    
      // Returns the current size of the queue.
      std::queue<func::FuncOp>::size_type QueueSize() const {
        return queue_.size();
      }
    
      Dialect* const tf_dialect_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %res = "tf.UnknownOp"(%vh) : (tensor<!tf_type.resource<tensor<f32>>>) -> tensor<i1>
      func.return %res : tensor<i1>
    }
    // Unused VarIsInitializedOp is erased.
    // CHECK: tf.VarHandleOp
    // CHECK-NEXT: tf.UnknownOp
    
    
    // Simple pass through value
    // CHECK-LABEL: testWhileRegionSimplePassThrough
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  8. ChangeLog.md

    - [`KT-66267`](https://youtrack.jetbrains.com/issue/KT-66267) K2: generic function's type parameter is erased if present as type argument in type of callable reference to member of generic function's local class
    - [`KT-61448`](https://youtrack.jetbrains.com/issue/KT-61448) K2: Disappeared DEPRECATION in testWithModifiedMockJdk
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        func::FuncOp func() {
          return SymbolTable::lookupNearestSymbolFrom<func::FuncOp>(*this, getF());
        }
    
        // Erases variable arguments from `batch_func_op`. `erase_indices` contains
        // the indices of the arguments to erase.
        void eraseArguments(const BitVector& erase_indices);
    
        // Gets the argument operands to the called function.
        operand_range getArgOperands() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top