Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 190 for too (0.04 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	// Test VPERMQ with both uint8 and int8 immediate args
    	VPERMQ $-40, Y8, Y8 // c443fd00c0d8
    	VPERMQ $216, Y8, Y8 // c443fd00c0d8
    	// Test that VPERMPD that shares ytab list with VPERMQ continues to work too.
    	VPERMPD $-40, Y7, Y7 // c4e3fd01ffd8
    	VPERMPD $216, Y7, Y7 // c4e3fd01ffd8
    	// Check that LEAL is permitted to use overflowing offset.
    	LEAL 2400959708(BP)(R10*1), BP // 428dac15dcbc1b8f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
  2. src/time/format.go

    		// - use the pointer format, which is no worse than you'd get with the
    		// old fmt.Sprintf("%#v", t) format.
    		//
    		// Of these, Location(loc.name) is the least disruptive. This is an edge
    		// case we hope not to hit too often.
    		buf = append(buf, `time.Location(`...)
    		buf = append(buf, quote(loc.name)...)
    		buf = append(buf, ')')
    	}
    	buf = append(buf, ')')
    	return string(buf)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller_test.go

    }
    
    // Ensure SyncService gracefully handles a missing service. This test also
    // populates another existing service to ensure a clean up process doesn't
    // remove too much.
    func TestSyncServiceMissing(t *testing.T) {
    	namespace := metav1.NamespaceDefault
    	client, esController := newController(t, []string{"node-1"}, time.Duration(0))
    
    	// Build up existing service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  4. src/debug/elf/file_test.go

    	}
    }
    
    // TestLargeNumberOfSections tests the case that a file has greater than or
    // equal to 65280 (0xff00) sections.
    func TestLargeNumberOfSections(t *testing.T) {
    	// A file with >= 0xff00 sections is too big, so we will construct it on the
    	// fly. The original file "y.o" is generated by these commands:
    	// 1. generate "y.c":
    	//   for i in `seq 1 65288`; do
    	//     printf -v x "%04x" i;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        val response = call.execute()
        assertThat(response.body.string()).isEqualTo(String(body))
      }
    
      /**
       * Test to ensure we throw a read timeout on responses that are progressing too slowly.  For this
       * case, we take a 2KiB body and throttle it to 1KiB/second.  We set the read timeout to half a
       * second.  If our implementation is acting correctly, it will throw, as a byte doesn't arrive in
       * time.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // This ensures the pod is marked ready immediately after the startup probe passes (which has a 1s poll interval),
      // and doesn't spam the readiness endpoint too much
      //
      // If the probe is disabled, it is recommended to have delay=1s,period=2s,failureThreshold=30.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    // Expect that the Identity node will not go into any clusters.  Note that we
    // create an incomplete graph here (e.g., lacking Enter/Exit/NextIteration,
    // etc.) just enough to test the pattern, as a complete graph may be too
    // cumbersome and unnecessary.
    TEST(XlaCompilationTest, DontClusterTheSpecialIdentityDrivingConstsInLoop) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    			// dependencies. If that happens, ideally we want to detect the missing
    			// requirements and fix them up here.
    			//
    			// However, we also need to be careful not to be too aggressive. For
    			// transitive dependencies of external tests, the go.mod file for the
    			// module containing the test itself is expected to provide all of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/internal/trace/order.go

    	// This event indicates that a goroutine created for a
    	// cgo callback is disappearing, either because the callback
    	// ending or the C thread that called it is being destroyed.
    	//
    	// Also, treat this as if we lost our P too.
    	// The thread ID may be reused by the platform and we'll get
    	// really confused if we try to steal the P is this is running
    	// with later. The new M with the same ID could even try to
    	// steal back this P from itself!
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  10. cmd/iam-store.go

    			return nil, time.Time{}, err
    		}
    
    		mp, ok = c.iamUserPolicyMap.Load(name)
    		if !ok {
    			// Since user "name" could be a parent user of an STS account, we look up
    			// mappings for those too.
    			mp, ok = c.iamSTSPolicyMap.Load(name)
    			if !ok {
    				// Attempt to load parent user mapping for STS accounts
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top