Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 300 for statx (0.05 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

    import spock.lang.Issue
    import spock.lang.Specification
    
    import java.util.function.Supplier
    
    import static org.gradle.api.artifacts.Configuration.State.RESOLVED
    import static org.gradle.api.artifacts.Configuration.State.RESOLVED_WITH_FAILURES
    import static org.gradle.api.artifacts.Configuration.State.UNRESOLVED
    import static org.hamcrest.CoreMatchers.equalTo
    import static org.hamcrest.MatcherAssert.assertThat
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. istioctl/pkg/proxyconfig/testdata/config_dump.json

                              },
                              {
                                "name": "istio.stats",
                                "typed_config": {
                                  "@type": "type.googleapis.com/udpa.type.v1.TypedStruct",
                                  "type_url": "type.googleapis.com/stats.PluginConfig",
                                  "value": {
                                    "reporter": "SERVER_GATEWAY"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

        GTEST_SKIP() << "NewWritableFile() not supported: " << status;
    
      FileStatistics stat;
      status = env_->Stat(filepath, &stat);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::OK);
      if (!status.ok()) GTEST_SKIP() << "Stat() not supported: " << status;
      EXPECT_FALSE(stat.is_directory);
      EXPECT_EQ(stat.length, 0);
    }
    
    TEST_P(ModularFileSystemTest, TestStatNonEmptyFile) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	nonTypeTemplateParamCount  int
    	templateTemplateParamCount int
    }
    
    // copy returns a copy of the current state.
    func (st *state) copy() *state {
    	n := new(state)
    	*n = *st
    	return n
    }
    
    // fail panics with demangleErr, to be caught in doDemangle.
    func (st *state) fail(err string) {
    	panic(demangleErr{err: err, off: st.off})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    	var state ConnectionState
    	state.HandshakeComplete = c.isHandshakeComplete.Load()
    	state.Version = c.vers
    	state.NegotiatedProtocol = c.clientProtocol
    	state.DidResume = c.didResume
    	state.testingOnlyDidHRR = c.didHRR
    	// c.curveID is not set on TLS 1.0–1.2 resumptions. Fix that before exposing it.
    	state.testingOnlyCurveID = c.curveID
    	state.NegotiatedProtocolIsMutual = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        if (!TFIntListIs1XY1(op, "strides", &height, &width)) return failure();
    
        ConvertTFConvOpMatchState state;
        state.stride_height = height;
        state.stride_width = width;
    
        if (TFIntListIs1XY1(op, "dilations", &height, &width)) {
          state.dilation_height_factor = height;
          state.dilation_width_factor = width;
        } else {
          // If the 'dilations' attribute is missing, we use the default value (1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    	// containers, and any foreground cleanup can be executed.
    	TerminatedPod
    )
    
    func (state PodWorkerState) String() string {
    	switch state {
    	case SyncPod:
    		return "sync"
    	case TerminatingPod:
    		return "terminating"
    	case TerminatedPod:
    		return "terminated"
    	default:
    		panic(fmt.Sprintf("the state %d is not defined", state))
    	}
    }
    
    // PodWorkerSync is the summarization of a single pod worker for sync. Values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Preconditions.java

        if (!expression) {
          throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1, p2, p3, p4));
        }
      }
    
      /**
       * Ensures the truth of an expression involving the state of the calling instance, but not
       * involving any parameters to the calling method.
       *
       * @param expression a boolean expression
       * @throws IllegalStateException if {@code expression} is false
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	dswp.findAndRemoveDeletedPods()
    
    	if !dswp.pods.processedPods[podName] {
    		t.Fatalf("Pod should not been removed from desired state of world since pod state still thinks it exists")
    	}
    
    	fakePodState.removed = map[kubetypes.UID]struct{}{pod.UID: {}}
    
    	// the pod state is marked as removed, so here findAndRemoveDeletedPods() will remove the pod and volumes it is mounted
    	dswp.findAndRemoveDeletedPods()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers_test.go

    	if e, a := map[types.UID]PodWorkerSync{
    		"1-normal": {State: SyncPod, HasConfig: true},
    		"2-static": {State: TerminatedPod, HasConfig: true, Static: true},
    		"3-static": {State: TerminatedPod},
    		"4-static": {State: SyncPod, HasConfig: true, Static: true},
    	}, state; !reflect.DeepEqual(e, a) {
    		t.Fatalf("unexpected actual state: %s", cmp.Diff(e, a))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top