Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 676 for comm (0.09 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/bbottema/javasocksproxyserver/TestRecordingProxyHandler.java

                        return;
                }
    
                comm.authenticate(theSOCKSversion);
                comm.getClientCommand();
    
                if (comm.socksCommand == SocksConstants.SC_CONNECT) {
                    connectionTargets.add(comm.m_ServerIP);
                }
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/internal/fuzz/sys_windows.go

    // run a worker process.
    func setWorkerComm(cmd *exec.Cmd, comm workerComm) {
    	mem := <-comm.memMu
    	memFD := mem.f.Fd()
    	comm.memMu <- mem
    	syscall.SetHandleInformation(syscall.Handle(comm.fuzzIn.Fd()), syscall.HANDLE_FLAG_INHERIT, 1)
    	syscall.SetHandleInformation(syscall.Handle(comm.fuzzOut.Fd()), syscall.HANDLE_FLAG_INHERIT, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:35:25 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/bootstrap/DaemonStartupCommunicationSpec.groovy

            def startupInfo = comm.readDiagnostics(message)
    
            then:
            startupInfo.diagnostics.pid == null
        }
    
        def "knows if a message contains a greeting"() {
            expect:
            !comm.containsGreeting("foo")
            comm.containsGreeting(message(null, "id", uuid, 123, addresses, new File("foo")))
    
            when:
            comm.containsGreeting(null)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. src/internal/fuzz/sys_posix.go

    // run a worker process.
    func setWorkerComm(cmd *exec.Cmd, comm workerComm) {
    	mem := <-comm.memMu
    	memFile := mem.f
    	comm.memMu <- mem
    	cmd.ExtraFiles = []*os.File{comm.fuzzIn, comm.fuzzOut, memFile}
    }
    
    // getWorkerComm returns communication channels in the worker process.
    func getWorkerComm() (comm workerComm, err error) {
    	fuzzIn := os.NewFile(3, "fuzz_in")
    	fuzzOut := os.NewFile(4, "fuzz_out")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 12 19:47:40 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  5. src/go/doc/testdata/examples/issue43658.golden

    		log.Fatal(err)
    	}
    
    	// Print out each step with communities ordered.
    	for _, d := range p {
    		comm := d.Communities()
    		for _, c := range comm {
    			sort.Sort(ordered.ByID(c))
    		}
    		sort.Sort(ordered.BySliceIDs(comm))
    		fmt.Printf("Low:%.2v High:%.2v Score:%v Communities:%v Q=%.3v\n",
    			d.Low, d.High, d.Score, comm, community.Q(g, comm, d.Low))
    	}
    
    }
    
    // intset is an integer set.
    type intset map[int]struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. src/go/doc/testdata/examples/issue43658.go

    		log.Fatal(err)
    	}
    
    	// Print out each step with communities ordered.
    	for _, d := range p {
    		comm := d.Communities()
    		for _, c := range comm {
    			sort.Sort(ordered.ByID(c))
    		}
    		sort.Sort(ordered.BySliceIDs(comm))
    		fmt.Printf("Low:%.2v High:%.2v Score:%v Communities:%v Q=%.3v\n",
    			d.Low, d.High, d.Score, comm, community.Q(g, comm, d.Low))
    	}
    
    	// Output:
    	// Low:0.1 High:0.29 Score:14 Communities:[[0 1 2 3 4 5]] Q=0.9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/select.go

    	if ncas == 0 {
    		return []ir.Node{mkcallstmt("block")}
    	}
    
    	// optimization: one-case select: single op.
    	if ncas == 1 {
    		cas := cases[0]
    		ir.SetPos(cas)
    		l := cas.Init()
    		if cas.Comm != nil { // not default:
    			n := cas.Comm
    			l = append(l, ir.TakeInit(n)...)
    			switch n.Op() {
    			default:
    				base.Fatalf("select %v", n.Op())
    
    			case ir.OSEND:
    				// already ok
    
    			case ir.OSELRECV2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. src/internal/fuzz/sys_unimplemented.go

    	panic("not implemented")
    }
    
    func (m *sharedMem) Close() error {
    	panic("not implemented")
    }
    
    func setWorkerComm(cmd *exec.Cmd, comm workerComm) {
    	panic("not implemented")
    }
    
    func getWorkerComm() (comm workerComm, err error) {
    	panic("not implemented")
    }
    
    func isInterruptError(err error) bool {
    	panic("not implemented")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 18:08:15 UTC 2022
    - 934 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    	for _, clause := range s.Body.List {
    		if comm := clause.(*ast.CommClause).Comm; comm != nil {
    			b.stmt(comm)
    		}
    	}
    
    	done := b.newBlock(KindSelectDone, s)
    	if label != nil {
    		label._break = done
    	}
    
    	var defaultBody *[]ast.Stmt
    	for _, cc := range s.Body.List {
    		clause := cc.(*ast.CommClause)
    		if clause.Comm == nil {
    			defaultBody = &clause.Body
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. ci/official/utilities/code_check_full.bats

      # Select lines unique to actual_licenses, i.e. extra licenses.
      comm -1 -3 $BATS_TEST_TMPDIR/expected_licenses $BATS_TEST_TMPDIR/actual_licenses | grep -v -f $BATS_TEST_TMPDIR/allowed_to_be_extra > $BATS_TEST_TMPDIR/actual_extra_licenses || true
      # Select lines unique to expected_licenses, i.e. missing licenses
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top