Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,932 for statx (0.04 sec)

  1. internal/grid/grid_test.go

    		runtime.Gosched()
    		stats := c.Stats()
    		if stats.IncomingStreams != 0 {
    			if i > 0 {
    				time.Sleep(100 * time.Millisecond)
    				continue
    			}
    			var found []uint64
    			c.inStream.Range(func(key uint64, value *muxServer) bool {
    				found = append(found, key)
    				return true
    			})
    			t.Errorf("expected no active streams, got %d incoming: %v", stats.IncomingStreams, found)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. src/encoding/gob/dec_helpers.go

    		}
    		real := float64FromBits(state.decodeUint())
    		imag := float64FromBits(state.decodeUint())
    		slice[i] = complex(real, imag)
    	}
    	return true
    }
    
    func decFloat32Array(state *decoderState, v reflect.Value, length int, ovfl error) bool {
    	// Can only slice if it is addressable.
    	if !v.CanAddr() {
    		return false
    	}
    	return decFloat32Slice(state, v.Slice(0, v.Len()), length, ovfl)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 19:28:46 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractService.java

                  + this
                  + " to reach a terminal state. "
                  + "Current state: "
                  + state());
        }
      }
    
      /** Checks that the current state is equal to the expected state. */
      @GuardedBy("monitor")
      private void checkCurrentState(State expected) {
        State actual = state();
        if (actual != expected) {
          if (actual == FAILED) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java

        service.startAsync().awaitRunning();
        assertEquals(State.RUNNING, service.state());
    
        service.stopAsync();
        service.stopAsync();
        assertEquals(State.TERMINATED, service.state());
        assertEquals(
            ImmutableList.of(State.STARTING, State.RUNNING, State.STOPPING, State.TERMINATED),
            listener.getStateHistory());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.3K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java

        service.startAsync().awaitRunning();
        assertEquals(State.RUNNING, service.state());
    
        service.stopAsync();
        service.stopAsync();
        assertEquals(State.TERMINATED, service.state());
        assertEquals(
            ImmutableList.of(State.STARTING, State.RUNNING, State.STOPPING, State.TERMINATED),
            listener.getStateHistory());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGeneratorTest.groovy

            def impl = proxyClass.newInstance(state, typeConverter)
    
            when:
            impl.value = "12"
            impl.primitive = "14"
    
            then:
            1 * state.set("value", 12)
            1 * state.set("primitive", 14L)
            0 * state._
        }
    
        def "mixes in converting setter for delegated property with scalar type"() {
            def state = Mock(ModelElementState)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  7. tests/test_dependency_contextmanager.py

        finally:
            state["context_a"] = "finished a"
    
    
    async def context_b(state: dict = Depends(context_a)):
        state["context_b"] = "started b"
        try:
            yield state
        finally:
            state["context_b"] = f"finished b with a: {state['context_a']}"
    
    
    @app.get("/async")
    async def get_async(state: str = Depends(asyncgen_state)):
        return state
    
    
    @app.get("/sync")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. pkg/volume/secret/secret_test.go

    	if err == nil {
    		t.Errorf("Expected error while setting up secret")
    	}
    
    	_, err = os.Stat(volumePath)
    	if err == nil {
    		t.Errorf("Expected path %s to not exist", volumePath)
    	}
    }
    
    // Test the case where the plugin's ready file exists, but the volume dir is not a
    // mountpoint, which is the state the system will be in after reboot.  The dir
    // should be mounter and the secret data written to it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/cri_stats_provider_windows.go

    	}
    	if stats.Memory != nil {
    		result.Memory.Time = metav1.NewTime(time.Unix(0, stats.Memory.Timestamp))
    		if stats.Memory.WorkingSetBytes != nil {
    			result.Memory.WorkingSetBytes = &stats.Memory.WorkingSetBytes.Value
    		}
    		if stats.Memory.AvailableBytes != nil {
    			result.Memory.AvailableBytes = &stats.Memory.AvailableBytes.Value
    		}
    		if stats.Memory.PageFaults != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 07:03:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/model/StateTransitionController.java

         */
        public void assertNotInState(T forbidden) {
            if (state.state == forbidden) {
                throw new IllegalStateException(displayName.getCapitalizedDisplayName() + " should not be in state " + forbidden + ".");
            }
        }
    
        /**
         * Verifies that the current state is the given state or some later state. Ignores any transition in progress and failures of previous operations.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 03:31:44 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top