Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 96 for ulong (0.62 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

                   "split sizes must sum up to the dimension size along split "
                   "dimension, found ")
               << total_dim_size << " vs " << input_dim_size;
    
      if (dynamic_dim_index && total_dim_size > input_dim_size)
        return op.emitOpError(
                   "split sizes must sum up to be less than or equal to the "
                   "dimension size along split dimension, found ")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. cmd/server_test.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    	"encoding/xml"
    	"fmt"
    	"io"
    	"math/rand"
    	"net/http"
    	"net/url"
    	"reflect"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		// it can print that information at the right time.
    		//
    		// It should also not enter deep sleep if there are any active P's so
    		// that it can retake P's from syscalls, preempt long running G's, and
    		// poll the network if all P's are busy for long stretches.
    		//
    		// It should wakeup from deep sleep if any P's become active either due
    		// to exiting a syscall or waking up due to a timer expiring so that it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    			select {
    			case <-t.C:
    			default:
    			}
    		}
    		t.Reset(d)
    	}
    }
    
    // connectionCleanerRunLocked removes connections that should be closed from
    // freeConn and returns them along side an updated duration to the next check
    // if a quicker check is required to ensure connections are checked appropriately.
    func (db *DB) connectionCleanerRunLocked(d time.Duration) (time.Duration, []*driverConn) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

            hoist_params->lhs_args[kv.second] = identity_const;
            hoist_params->rhs_args[kv.second] = kv.first;
          }
        }
      }
    
      // Concatenates `args` along `axis`.
      auto pack_or_concat = [&](bool is_scalar, Type result_type, ValueRange args,
                                int64_t axis) {
        // Use `PackOp` for scalar concatenation because `ConcatV2Op` doesn't
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller_test.go

    		t.Fatalf("error creating DaemonSets controller: %v", err)
    	}
    	manager.dsStore.Add(ds)
    	addNodes(manager.nodeStore, 0, 5, nil)
    
    	// the clock will be set 10s after the newest pod on node-1 went ready, which is not long enough to be available
    	manager.DaemonSetsController.failedPodsBackoff.Clock = testingclock.NewFakeClock(time.Unix(50+10, 0))
    
    	// will be preserved because it has the newest hash
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    		return err
    	}
    
    	kubeDeps.useLegacyCadvisorStats = cadvisor.UsingLegacyCadvisorStats(kubeCfg.ContainerRuntimeEndpoint)
    
    	return nil
    }
    
    // NewMainKubelet instantiates a new Kubelet object along with all the required internal modules.
    // No initialization of Kubelet and its modules should happen here.
    func NewMainKubelet(kubeCfg *kubeletconfiginternal.KubeletConfiguration,
    	kubeDeps *Dependencies,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. src/crypto/x509/verify_test.go

    	if err != nil {
    		return nil, nil, err
    	}
    
    	return cert, priv, nil
    }
    
    func TestPathologicalChain(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping generation of a long chain of certificates in short mode")
    	}
    
    	// Build a chain where all intermediates share the same subject, to hit the
    	// path building worst behavior.
    	roots, intermediates := NewCertPool(), NewCertPool()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  9. src/net/http/server.go

    		// did that because that's how CloseNotify accidentally behaved
    		// in very early Go releases prior to context support. Once we
    		// added context support, people used a Handler's
    		// Request.Context() and passed it along. Having that context
    		// cancel on pipelined HTTP requests caused problems.
    		// Fortunately, almost nothing uses HTTP/1.x pipelining.
    		// Unfortunately, apt-get does, or sometimes does.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

    resultsFile:
     - results.bin \\(RegularFile, [0-9a-f]+\\)""")
            run "util:resolve"
    
            then:
            output.count("Transformed") == 1
        }
    
        def "long transformation chain works"() {
            given:
            buildFile << declareAttributes() << withJarTasks() << withFileLibDependency("lib3.jar") << withExternalLibDependency("lib4") << duplicatorTransform() << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
Back to top