Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 87 for Binary (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    When CreateSummaryDbWriter is being used, this op can be useful for
    importing data from event logs.
    
    writer: A handle to a summary writer.
    event: A string containing a binary-encoded tf.Event proto.
      }];
    
      let arguments = (ins
        Arg<TF_ResourceTensor, "", [TF_SummaryWrite]>:$writer,
        TF_StrTensor:$event
      );
    
      let results = (outs);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    			dirNums[dir] = dirIdx
    			dirs = append(dirs, dir)
    		}
    		files = append(files, fileDir{base: file, dir: dirIdx})
    
    		// We can't use something that may be dead-code
    		// eliminated from a binary here. proc.go contains
    		// main and the scheduler, so it's not going anywhere.
    		if i := strings.Index(name, "runtime/proc.go"); i >= 0 && unit.Lib.Pkg == "runtime" {
    			d.dwmu.Lock()
    			if gdbscript == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    			pp.Path[0] = '@'
    		}
    
    		// Assume path ends at NUL.
    		// This is not technically the Linux semantics for
    		// abstract Unix domain sockets--they are supposed
    		// to be uninterpreted fixed-size binary blobs--but
    		// everyone uses this convention.
    		n := 0
    		for n < len(pp.Path) && pp.Path[n] != 0 {
    			n++
    		}
    		sa.Name = string(unsafe.Slice((*byte)(unsafe.Pointer(&pp.Path[0])), n))
    		return sa, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    		return err
    	}
    	if err := b.incrementSectionCount(); err != nil {
    		return err
    	}
    	b.msg = msg
    	return nil
    }
    
    // Finish ends message building and generates a binary message.
    func (b *Builder) Finish() ([]byte, error) {
    	if b.section < sectionHeader {
    		return nil, ErrNotStarted
    	}
    	b.section = sectionDone
    	// Space for the header was allocated in NewBuilder.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      TF_GraphGetOpDef(graph, "MyFakeOp", buffer, status);
      EXPECT_EQ(TF_NOT_FOUND, TF_GetCode(status));
      ExpectHasSubstr(TF_Message(status),
                      "Op type not registered 'MyFakeOp' in binary");
    
      TF_DeleteBuffer(buffer);
      TF_DeleteGraph(graph);
      TF_DeleteStatus(status);
    }
    
    void StringVectorToArrays(const std::vector<string>& v,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. src/go/parser/parser.go

    	tok := p.tok
    	if p.inRhs && tok == token.ASSIGN {
    		tok = token.EQL
    	}
    	return tok, tok.Precedence()
    }
    
    // parseBinaryExpr parses a (possibly) binary expression.
    // If x is non-nil, it is used as the left operand.
    //
    // TODO(rfindley): parseBinaryExpr has become overloaded. Consider refactoring.
    func (p *parser) parseBinaryExpr(x ast.Expr, prec1 int) ast.Expr {
    	if p.trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		// to the length provided in the structure.
    		//
    		// This is not technically the Linux semantics for
    		// abstract Unix domain sockets--they are supposed
    		// to be uninterpreted fixed-size binary blobs--but
    		// everyone uses this convention.
    		n := 0
    		for n < int(pp.Len) && pp.Path[n] != 0 {
    			n++
    		}
    		sa.Name = string(unsafe.Slice((*byte)(unsafe.Pointer(&pp.Path[0])), n))
    		return sa, nil
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. src/os/os_test.go

    				}
    			}
    		})
    	}
    }
    
    func testKillProcess(t *testing.T, processKiller func(p *Process)) {
    	testenv.MustHaveExec(t)
    	t.Parallel()
    
    	// Re-exec the test binary to start a process that hangs until stdin is closed.
    	cmd := testenv.Command(t, Args[0])
    	cmd.Env = append(cmd.Environ(), "GO_OS_TEST_DRAIN_STDIN=1")
    	stdout, err := cmd.StdoutPipe()
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    		t.Errorf("server unexpectedly sent downgrade canary for TLS 1.3")
    	}
    	if err := testDowngradeCanary(t, VersionTLS12, VersionTLS12); err != nil {
    		t.Errorf("client didn't ignore expected TLS 1.2 canary")
    	}
    	if err := testDowngradeCanary(t, VersionTLS11, VersionTLS11); err != nil {
    		t.Errorf("client unexpectedly reacted to a canary in TLS 1.1")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    	// kubeProxyFirewallChain is the kube-proxy firewall chain
    	kubeProxyFirewallChain utiliptables.Chain = "KUBE-PROXY-FIREWALL"
    
    	// kube proxy canary chain is used for monitoring rule reload
    	kubeProxyCanaryChain utiliptables.Chain = "KUBE-PROXY-CANARY"
    
    	// kubeletFirewallChain is a duplicate of kubelet's firewall containing
    	// the anti-martian-packet rule. It should not be used for any other
    	// rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top