Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for behaviors (0.17 sec)

  1. doc/go1.17_spec.html

    	</li>
    </ul>
    
    <p>
    A comparison of two interface values with identical dynamic types
    causes a <a href="#Run_time_panics">run-time panic</a> if values
    of that type are not comparable.  This behavior applies not only to direct interface
    value comparisons but also when comparing arrays of interface values
    or structs with interface-valued fields.
    </p>
    
    <p>
    Slice, map, and function values are not comparable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		}
    	}()
    	q.Close()
    	wg.Wait()
    }
    
    // TestRecentlyTriedPodsGoBack tests that pods which are recently tried and are
    // unschedulable go behind other pods with the same priority. This behavior
    // ensures that an unschedulable pod does not block head of the queue when there
    // are frequent events that move pods to the active queue.
    func TestRecentlyTriedPodsGoBack(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    	waitForFree(t, db, 1)
    	if prepares := numPrepares(t, db) - prepares0; prepares != 1 {
    		t.Fatalf("executed %d Prepare statements; want 1", prepares)
    	}
    }
    
    // TestTxContextWait tests the transaction behavior when the tx context is canceled
    // during execution of the query.
    func TestTxContextWait(t *testing.T) {
    	testContextWait(t, false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. src/reflect/value.go

    	// MapKeys as arguments to MapIndex. If either the map
    	// or the key is unexported, though, the result will be
    	// considered unexported. This is consistent with the
    	// behavior for structs, which allow read but not write
    	// of unexported fields.
    
    	var e unsafe.Pointer
    	if (tt.Key == stringType || key.kind() == String) && tt.Key == key.typ() && tt.Elem.Size() <= abi.MapMaxElemBytes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertThat(get(url).body.string()).isEqualTo("BB")
      }
    
      /**
       * When the server returns a full response body we will store it and return it regardless of what
       * its Last-Modified date is. This behavior was different prior to OkHttp 3.5 when we would prefer
       * the response with the later Last-Modified date.
       *
       * https://github.com/square/okhttp/issues/2886
       */
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    	{as: obj.ANOP, type_: 0, size: 0},
    	{as: obj.ANOP, a1: C_32CON, type_: 0, size: 0}, // NOP operand variations added for #40689
    	{as: obj.ANOP, a1: C_REG, type_: 0, size: 0},   // to preserve previous behavior
    	{as: obj.ANOP, a1: C_FREG, type_: 0, size: 0},
    	{as: obj.ADUFFZERO, a6: C_BRA, type_: 11, size: 4}, // same as ABR/ABL
    	{as: obj.ADUFFCOPY, a6: C_BRA, type_: 11, size: 4}, // same as ABR/ABL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/bootstrap.min.js.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller_test.go

    	// Create a misconfigured DaemonSet. An empty pod selector is invalid but could happen
    	// if we upgrade and make a backwards incompatible change.
    	//
    	// The node selector matches no nodes which mimics the behavior of kubectl delete.
    	//
    	// The DaemonSet should not schedule pods and should not delete scheduled pods in
    	// this case even though it's empty pod selector matches all pods. The DaemonSetController
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  9. src/main/webapp/js/bootstrap.min.js.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CallTest.kt

          client.newCall(request).execute()
        }
      }
    
      /**
       * Confirm that we don't send the Proxy-Authorization header from the request to the proxy server.
       * We used to have that behavior but it is problematic because unrelated requests end up sharing
       * credentials. Worse, that approach leaks proxy credentials to the origin server.
       */
      @Test
      fun noPreemptiveProxyAuthorization() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
Back to top