Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 298 for startm (0.41 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    // Conditional for step 2
    C_2 = cond(args_2)
    
    new_while_body (new_args) {  // starts at i==2
       // Finish step i-2
       B_im2 = backward(args_im2, N_im2, F_im2, T_im2)
    
       // Advance step i-1
       T_im1 = core_tpu(args_im1, N_im1, F_im1)
    
       // Finish the update of args_2
       args_i = args_2b = update_args(args_2a, T_im1)
    
       // Start step i
       N_i = non_tpu(args_i)
       F_i = forward(args_i, N_i)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                  conf 'start:start:1.0'
                }
            '''
    
            and:
            "align the 'org' group only"()
    
            when:
            expectAlignment {
                module('start') group('start') alignsTo('1.0')
                module('foo') tries('1.0') alignsTo('1.1') byVirtualPlatform()
                module('bar') tries('1.0') alignsTo('1.1') byVirtualPlatform()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  3. src/net/http/fs_test.go

    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    	"testing"
    	"testing/fstest"
    	"time"
    )
    
    const (
    	testFile    = "testdata/file"
    	testFileLen = 11
    )
    
    type wantRange struct {
    	start, end int64 // range [start,end)
    }
    
    var ServeFileRangeTests = []struct {
    	r      string
    	code   int
    	ranges []wantRange
    }{
    	{r: "", code: StatusOK},
    	{r: "bytes=0-4", code: StatusPartialContent, ranges: []wantRange{{0, 5}}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    maybeAddDefaultConfiguration();
                } else if ((state == State.DEP_ARTIFACT && "artifact".equals(qName))
                        || (state == State.ARTIFACT_INCLUDE && "include".equals(qName))
                        || (state == State.ARTIFACT_EXCLUDE && "exclude".equals(qName))) {
                    state = State.DEP;
                    if (confAware.getConfigurations().length == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/manager_test.go

    		updateChan <- new(interface{})
    	}
    	activePods := func() []*v1.Pod {
    		return []*v1.Pod{}
    	}
    
    	// test steady state, initialization where sourcesReady, containerMap and containerRunningSet
    	// are relevant will be tested with a different flow
    	err = w.Start(activePods, &sourcesReadyStub{}, containermap.NewContainerMap(), sets.New[string]())
    	require.NoError(t, err)
    
    	return w, updateChan
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server_test.go

    	}
    	clientConfig := &Config{
    		InsecureSkipVerify: true,
    		MinVersion:         VersionTLS12,
    	}
    	state, _, err := testHandshake(t, clientConfig, serverConfig)
    	if err != nil {
    		t.Fatalf("handshake failed: %s", err)
    	}
    	if state.Version != VersionTLS13 {
    		t.Fatalf("incorrect version %x, should be %x", state.Version, VersionTLS11)
    	}
    
    	clientConfig.MinVersion = 0
    	serverConfig.MaxVersion = VersionTLS11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

         * Returns additional JVM args that should be used to start the build JVM.
         */
        protected List<String> getImplicitBuildJvmArgs() {
            List<String> buildJvmOpts = new ArrayList<>();
            buildJvmOpts.add("-ea");
    
            if (isDebug()) {
                if (System.getenv().containsKey("CI")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. pkg/apis/apps/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta1_StatefulSetOrdinals_To_apps_StatefulSetOrdinals(in *v1beta1.StatefulSetOrdinals, out *apps.StatefulSetOrdinals, s conversion.Scope) error {
    	out.Start = in.Start
    	return nil
    }
    
    // Convert_v1beta1_StatefulSetOrdinals_To_apps_StatefulSetOrdinals is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 52.9K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    	testServer.Server.TLS = config
    	testServer.Server.StartTLS()
    	return testServer
    }
    
    // Starts the test server and returns the TestServer instance.
    func StartTestServer(t TestErrHandler, instanceType string) TestServer {
    	// create an instance of TestServer.
    	testServer := UnstartedTestServer(t, instanceType)
    	testServer.Server.Start()
    	return testServer
    }
    
    // Sets the global config path to empty string.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   FlushInfoLog() - flushes informational log messages.
    //
    // Stdout and stderr capturing:
    //   CaptureStdout()     - starts capturing stdout.
    //   GetCapturedStdout() - stops capturing stdout and returns the captured
    //                         string.
    //   CaptureStderr()     - starts capturing stderr.
    //   GetCapturedStderr() - stops capturing stderr and returns the captured
    //                         string.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top