Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,825 for cstdio (0.11 sec)

  1. tensorflow/compiler/mlir/lite/json_to_flatbuffer.cc

    limitations under the License.
    ==============================================================================*/
    #include <stdint.h>
    
    #include <cstddef>
    #include <cstdio>
    #include <iostream>
    #include <string>
    
    #include "flatbuffers/flatbuffers.h"  // from @flatbuffers
    #include "flatbuffers/idl.h"  // from @flatbuffers
    #include "flatbuffers/util.h"  // from @flatbuffers
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #include <cstdio>
    #include <iostream>
    #include <optional>
    #include <string>
    
    #include "llvm/ADT/StringRef.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/teststdio/testdata/hello.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build test_run
    
    package main
    
    import "cgostdio/stdio"
    
    func main() {
    	stdio.Stdout.WriteString(stdio.Greeting + "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 285 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/teststdio/testdata/chain.go

    package main
    
    import (
    	"runtime"
    	"strconv"
    
    	"cgostdio/stdio"
    )
    
    const N = 10
    const R = 5
    
    func link(left chan<- int, right <-chan int) {
    	// Keep the links in dedicated operating system
    	// threads, so that this program tests coordination
    	// between pthreads and not just goroutines.
    	runtime.LockOSThread()
    	for {
    		v := <-right
    		stdio.Stdout.WriteString(strconv.Itoa(v) + "\n")
    		left <- 1 + v
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 914 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/teststdio/testdata/fib.go

    package main
    
    import (
    	"runtime"
    	"strconv"
    
    	"cgostdio/stdio"
    )
    
    func fibber(c, out chan int64, i int64) {
    	// Keep the fibbers in dedicated operating system
    	// threads, so that this program tests coordination
    	// between pthreads and not just goroutines.
    	runtime.LockOSThread()
    
    	if i == 0 {
    		c <- i
    	}
    	for {
    		j := <-c
    		stdio.Stdout.WriteString(strconv.FormatInt(j, 10) + "\n")
    		out <- j
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 965 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/visual-studio-task-graph.dot

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // dot -Tpng src/docs/userguide/img/visual-studio-task-graph.dot > src/docs/userguide/img/visual-studio-task-graph.png
    digraph visualStudioTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/android-studio-build-sync-popup.png

    android-studio-build-sync-popup.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/istio.go

    // limitations under the License.
    
    package istio
    
    import (
    	"net/netip"
    	"regexp"
    	"strconv"
    	"strings"
    	"time"
    
    	"google.golang.org/protobuf/types/known/structpb"
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/kube/inject"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. tools/packaging/common/istio.service

    [Unit]
    Description=istio-sidecar: The Istio sidecar
    Documentation=http://istio.io/
    StartLimitIntervalSec=0
    
    [Service]
    ExecStart=/usr/local/bin/istio-start.sh
    ExecStartPre=+/usr/bin/install -d -o istio-proxy -m 0755 /var/run/secrets
    ExecStopPost=/usr/local/bin/istio-start.sh clean
    Restart=always
    RestartSec=10
    KillMode=mixed
    TimeoutStopSec=30s
    
    [Install]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 21 17:48:33 UTC 2023
    - 382 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/kotlin-dsl-intellij-idea-android-studio.png

    kotlin-dsl-intellij-idea-android-studio.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 155.3K bytes
    - Viewed (0)
Back to top