Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for deselect (0.23 sec)

  1. src/go/parser/parser.go

    	}
    
    	pos := p.expect(token.SELECT)
    	lbrace := p.expect(token.LBRACE)
    	var list []ast.Stmt
    	for p.tok == token.CASE || p.tok == token.DEFAULT {
    		list = append(list, p.parseCommClause())
    	}
    	rbrace := p.expect(token.RBRACE)
    	p.expectSemi()
    	body := &ast.BlockStmt{Lbrace: lbrace, List: list, Rbrace: rbrace}
    
    	return &ast.SelectStmt{Select: pos, Body: body}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	getresgid(&r, &e, &s)
    	return int(r), int(e), int(s)
    }
    
    // Pselect is a wrapper around the Linux pselect6 system call.
    // This version does not modify the timeout argument.
    func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, sigmask *Sigset_t) (n int, err error) {
    	// Per https://man7.org/linux/man-pages/man2/select.2.html#NOTES,
    	// The Linux pselect6() system call modifies its timeout argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. cmd/peer-rest-server.go

    	// We have however a dynamic downstream buffer (ch).
    	buf := bytes.NewBuffer(grid.GetByteBuffer())
    	enc := json.NewEncoder(buf)
    	tmpEvt := struct{ Records []event.Event }{[]event.Event{{}}}
    	for {
    		select {
    		case <-ctx.Done():
    			grid.PutByteBuffer(buf.Bytes())
    			return nil
    		case ev := <-ch:
    			buf.Reset()
    			tmpEvt.Records[0] = ev
    			if err := enc.Encode(tmpEvt); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    #                        [False, True]]
    # 't' is [[1, 2],
    #         [3, 4]]
    # 'e' is [[5, 6],
    #         [7, 8]]
    select(condition, t, e)  # => [[1, 6], [7, 4]]
    
    
    # 'condition' tensor is [True, False]
    # 't' is [[1, 2],
    #         [3, 4]]
    # 'e' is [[5, 6],
    #         [7, 8]]
    select(condition, t, e) ==> [[1, 2],
                                 [7, 8]]
    
    ```
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    			"file:", "func:t", "switch:", "case:x", // x implicitly declared
    		}},
    		{`package p14; func _() { select{} }`, []string{
    			"file:", "func:",
    		}},
    		{`package p15; func _(c chan int) { select{ case <-c: } }`, []string{
    			"file:", "func:c", "comm:",
    		}},
    		{`package p16; func _(c chan int) { select{ case i := <-c: x := i; _ = x} }`, []string{
    			"file:", "func:c", "comm:i x",
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    						"app": "foo",
    					},
    				},
    			},
    		},
    		[]*model.Service{svc1, svc2},
    		2,
    		meshWatcher,
    		fx,
    		controller,
    	)
    
    	// namespace nsB, nsC deselected
    	fx.AssertEmpty(t, 0)
    
    	// create vs1 in nsA
    	createVirtualService(controller, "vs1", nsA, map[string]string{}, t)
    
    	// create vs1 in nsB
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go

    	}
    	return
    }
    
    var libc_lseek_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_lseek lseek "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go

    	}
    	return
    }
    
    var libc_lseek_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_lseek lseek "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. pkg/controller/disruption/disruption_test.go

    		return len(store.List()) == n, nil
    	})
    }
    
    func verifyEventEmitted(t *testing.T, dc *disruptionController, expectedEvent string) {
    	ticker := time.NewTicker(500 * time.Millisecond)
    	for {
    		select {
    		case e := <-dc.recorder.(*record.FakeRecorder).Events:
    			if strings.Contains(e, expectedEvent) {
    				return
    			}
    		case <-ticker.C:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "integer",
              "format": "int64"
            },
            "labels": {
              "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels",
              "type": "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
Back to top