Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for C$ (0.03 sec)

  1. src/cmd/go/internal/modindex/testdata/ignore_non_source/c.c

    Michael Matloob <******@****.***> 1664988840 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 05 18:59:21 UTC 2022
    - Viewed (0)
  2. src/cmd/cgo/internal/testcshared/testdata/go2c2go/m1/c.c

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 238 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/gcc68255/c.c

    Austin Clements <******@****.***> 1683224724 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 206 bytes
    - Viewed (0)
  4. src/os/testdata/issue37161/c

    c...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 01 22:26:33 UTC 2020
    - 2 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testlife/testdata/c-life.c

    {
    	int x, y, c, i, j;
    
    	for(x = xstart; x < xend; x++) {
    		for(y = ystart; y < yend; y++) {
    			c = 0;
    			for(i = -1; i <= 1; i++) {
    				for(j = -1; j <= 1; j++) {
    				  if(x+i >= 0 && x+i < xdim &&
    					y+j >= 0 && y+j < ydim &&
    					(i != 0 || j != 0))
    				    c += a[(x+i)*xdim + (y+j)] != 0;
    				}
    			}
    			if(c == 3 || (c == 2 && a[x*xdim + y] != 0))
    				n[x*xdim + y] = 1;
    			else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testplugin/testdata/issue25756/plugin/c-life.c

    {
    	int x, y, c, i, j;
    
    	for(x = xstart; x < xend; x++) {
    		for(y = ystart; y < yend; y++) {
    			c = 0;
    			for(i = -1; i <= 1; i++) {
    				for(j = -1; j <= 1; j++) {
    				  if(x+i >= 0 && x+i < xdim &&
    					y+j >= 0 && y+j < ydim &&
    					(i != 0 || j != 0))
    				    c += a[(x+i)*xdim + (y+j)] != 0;
    				}
    			}
    			if(c == 3 || (c == 2 && a[x*xdim + y] != 0))
    				n[x*xdim + y] = 1;
    			else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. tensorflow/c/c_test.c

    #include <stdio.h>
    #include <stdlib.h>
    #include <time.h>
    #include <unistd.h>
    
    #ifdef _WIN32
    #include <process.h>
    #endif
    
    #include "tensorflow/c/c_api.h"
    #include "tensorflow/c/c_api_experimental.h"
    #include "tensorflow/c/env.h"
    #include "tensorflow/c/kernels.h"
    
    // A create function. This will never actually get called in this test, it's
    // just nice to know that it compiles.
    void* create(TF_OpKernelConstruction* ctx) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:50:35 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/go/doc/testdata/c.go

    // are handled correctly.
    
    // A (should see this)
    type A struct{}
    
    // B (should see this)
    type (
    	B struct{}
    )
    
    type (
    	// C (should see this)
    	C struct{}
    )
    
    // D (should not see this)
    type (
    	// D (should see this)
    	D struct{}
    )
    
    // E (should see this for E2 and E3)
    type (
    	// E1 (should see this)
    	E1 struct{}
    	E2 struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.2K bytes
    - Viewed (0)
  9. test/typeparam/dedup.dir/c.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package c
    
    import "./a"
    
    func C() {
    	var x int64
    	println(a.F(&x, &x))
    	var y int32
    	println(a.F(&y, &y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 268 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testcarchive/testdata/main4.c

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test a C thread that calls sigaltstack and then calls Go code.
    
    #include <signal.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <time.h>
    #include <sched.h>
    #include <pthread.h>
    
    #include "libgo4.h"
    
    #ifdef _AIX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top