Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 312 for statx (0.09 sec)

  1. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///   * Must set `status` to `TF_FAILED_PRECONDITION` if `path` is invalid.
      ///   * Might use any other error value for `status` to signal other errors.
      void (*stat)(const TF_Filesystem* filesystem, const char* path,
                   TF_FileStatistics* stats, TF_Status* status);
    
      /// Checks whether the given `path` is a directory or not.
      ///
      /// If `status` is not `TF_OK`, returns `false`, otherwise returns the same
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  2. 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)
  3. tests/integration/pilot/testdata/upgrade/1.9.5-install.yaml.tar

    apiVersion: networking.istio.io/v1alpha3 kind: EnvoyFilter metadata: name: stats-filter-1.8-1-9-5 namespace: istio-system labels: istio.io/rev: 1-9-5 spec: configPatches: - applyTo: HTTP_FILTER match: context: SIDECAR_OUTBOUND proxy: proxyVersion: '^1\.8.*' listener: filterChain: filter: name: "envoy.filters.network.http_connection_manager" subFilter: name: "envoy.filters.http.router" patch: operation: INSERT_BEFORE value: name: istio.stats typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  4. src/os/os_test.go

    	// Create new temporary directory and arrange to clean it up.
    	path := t.TempDir()
    
    	// Stat of path should succeed.
    	if _, err := Stat(path); err != nil {
    		t.Fatalf("stat %s failed: %s", path, err)
    	}
    
    	// Stat of path+"/" should succeed too.
    	path += "/"
    	if _, err := Stat(path); err != nil {
    		t.Fatalf("stat %s failed: %s", path, err)
    	}
    }
    
    func TestNilProcessStateString(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/upgrade/1.10.0-install.yaml.tar

    networking.istio.io/v1alpha3 kind: EnvoyFilter metadata: name: stats-filter-1.10-1-10-0 namespace: istio-system labels: istio.io/rev: 1-10-0 spec: configPatches: - applyTo: HTTP_FILTER match: context: SIDECAR_OUTBOUND proxy: proxyVersion: '^1\.10.*' listener: filterChain: filter: name: "envoy.filters.network.http_connection_manager" subFilter: name: "envoy.filters.http.router" patch: operation: INSERT_BEFORE value: name: istio.stats typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top