Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for coord_ (0.3 sec)

  1. src/cmd/compile/internal/types2/decl.go

    	// its methods, and we don't want a cycle error in that case.
    	// TODO(gri) review if this is correct and/or whether we still need this?
    	saved := obj.color_
    	obj.color_ = black
    	fdecl := decl.fdecl
    	check.funcType(sig, fdecl.Recv, fdecl.TParamList, fdecl.Type)
    	obj.color_ = saved
    
    	// Set the scope's extent to the complete "func (...) { ... }"
    	// so that Scope.Innermost works correctly.
    	sig.scope.pos = fdecl.Pos()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    func createNodeLease(nodeName string, renewTime metav1.MicroTime) *coordv1.Lease {
    	return &coordv1.Lease{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      nodeName,
    			Namespace: v1.NamespaceNodeLease,
    		},
    		Spec: coordv1.LeaseSpec{
    			HolderIdentity: pointer.String(nodeName),
    			RenewTime:      &renewTime,
    		},
    	}
    }
    
    func (nc *nodeLifecycleController) syncLeaseStore(lease *coordv1.Lease) error {
    	if lease == nil {
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/completion.go

    			COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}
    		done
    	fi
    }
    
    __kubeadm_get_comp_words_by_ref() {
    	cur="${COMP_WORDS[COMP_CWORD]}"
    	prev="${COMP_WORDS[${COMP_CWORD}-1]}"
    	words=("${COMP_WORDS[@]}")
    	cword=("${COMP_CWORD[@]}")
    }
    
    __kubeadm_filedir() {
    	local RET OLD_IFS w qw
    
    	__kubectl_debug "_filedir $@ cur=$cur"
    	if [[ "$1" = \~* ]]; then
    		# somehow does not work. Maybe, zsh does not call this at all
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    // some effort should be given to getting existing work
    // loads off of tainted nodes.
    
    package nodelifecycle
    
    import (
    	"context"
    	"fmt"
    	"sync"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	coordv1 "k8s.io/api/coordination/v1"
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. pkg/collateral/control.go

    			COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}
    		done
    	fi
    }
    __istio_get_comp_words_by_ref() {
    	cur="${COMP_WORDS[COMP_CWORD]}"
    	prev="${COMP_WORDS[${COMP_CWORD}-1]}"
    	words=("${COMP_WORDS[@]}")
    	cword=("${COMP_CWORD[@]}")
    }
    __istio_filedir() {
    	local RET OLD_IFS w qw
    	__istio_debug "_filedir $@ cur=$cur"
    	if [[ "$1" = \~* ]]; then
    		# somehow does not work. Maybe, zsh does not call this at all
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    #include "absl/algorithm/container.h"
    #include "absl/base/attributes.h"
    #include "absl/container/flat_hash_map.h"
    #include "absl/container/flat_hash_set.h"
    #include "absl/status/status.h"
    #include "absl/strings/cord.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_format.h"
    #include "absl/strings/str_join.h"
    #include "absl/strings/string_view.h"
    #include "flatbuffers/buffer.h"  // from @flatbuffers
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/trace_viewer_full.html

    this.rightOffset+'px';this.textArea_.style.top=coords.viewY-ctx.canvas.getBoundingClientRect().top-
    this.topOffset+'px';ctx.strokeStyle='rgb(0, 0, 0)';ctx.lineWidth=2;ctx.beginPath();tr.ui.b.drawLine(ctx,coords.viewX,coords.viewY-ctx.canvas.getBoundingClientRect().top,coords.viewX+this.rightOffset,coords.viewY-this.topOffset-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    </pre>
    
    <pre>
    i, j := 0, 10
    f := func() int { return 7 }
    ch := make(chan int)
    r, w, _ := os.Pipe()  // os.Pipe() returns a connected pair of Files and an error, if any
    _, y, _ := coord(p)   // coord() returns three values; only interested in y coordinate
    </pre>
    
    <p>
    Unlike regular variable declarations, a short variable declaration may <i>redeclare</i>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. doc/go_spec.html

    </pre>
    
    <pre>
    i, j := 0, 10
    f := func() int { return 7 }
    ch := make(chan int)
    r, w, _ := os.Pipe()  // os.Pipe() returns a connected pair of Files and an error, if any
    _, y, _ := coord(p)   // coord() returns three values; only interested in y coordinate
    </pre>
    
    <p>
    Unlike regular variable declarations, a short variable declaration may <i>redeclare</i>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top