Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for findMin (0.27 sec)

  1. buildscripts/checkdeps.sh

    	while [ -L "$TARGET_FILE" ]; do
    		TARGET_FILE=$(env readlink $TARGET_FILE)
    		cd $(dirname $TARGET_FILE)
    		TARGET_FILE=$(basename $TARGET_FILE)
    	done
    
    	# Compute the canonicalized name by finding the physical path
    	# for the directory we're in and appending the target file.
    	PHYS_DIR=$(pwd -P)
    	RESULT=$PHYS_DIR/$TARGET_FILE
    	echo $RESULT
    }
    
    ## FIXME:
    ## In OSX, 'sort -V' option does not exist, hence
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/net.go

    	s.ztunnelServer.Close()
    }
    
    func (s *NetServer) rescanPod(pod *corev1.Pod) error {
    	// this can happen if the pod was dynamically added to the mesh after it was created.
    	// in that case, try finding the netns using procfs.
    	filter := map[types.UID]*corev1.Pod{
    		pod.UID: pod,
    	}
    	return s.scanProcForPodsAndCache(filter)
    }
    
    func (s *NetServer) getOrOpenNetns(pod *corev1.Pod, netNs string) (Netns, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/deployment/builder.go

    	}
    	templates, err := b.injectionTemplates()
    	if err != nil {
    		// deal with this when we call Build() to avoid making the New signature unwieldy
    		b.errs = multierror.Append(b.errs, fmt.Errorf("failed finding injection templates on clusters %v", err))
    	}
    	b.templates = templates
    
    	return b.WithClusters(clusters...)
    }
    
    type builder struct {
    	ctx resource.Context
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    		if sw.NeedSwitch() {
    			sw.Switch(ctx)
    			// If NeedSwitch is true and Switch returns, Switch has failed to locate a newer toolchain.
    			// It printed the errors along with one more about not finding a good toolchain.
    			base.Exit()
    		}
    
    		for _, q := range queries {
    			unresolved := q.candidates[:0]
    
    			for _, cs := range q.candidates {
    				if cs.err != nil {
    					reportError(q, cs.err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    //
    // Important: locatePrologEnd is expected to work properly only with
    // optimization turned off (e.g. "-N"). If optimization is enabled
    // we can't be assured of finding all input arguments spilled in the
    // entry block prolog.
    func locatePrologEnd(f *Func, needCloCtx bool) (ID, *Value) {
    
    	// returns true if this instruction looks like it moves an ABI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    	}
    	return zeroDialer.DialContext(ctx, network, addr)
    }
    
    // A wantConn records state about a wanted connection
    // (that is, an active call to getConn).
    // The conn may be gotten by dialing or by finding an idle connection,
    // or a cancellation may make the conn no longer wanted.
    // These three options are racing against each other and use
    // wantConn to coordinate and agree about the winning outcome.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		}
    		if strings.HasPrefix(name, "./") {
    			gofiles = append(gofiles, name[len("./"):])
    			continue
    		}
    		file, err := b.findCachedObjdirFile(a, c, name)
    		if err != nil {
    			return fmt.Errorf("finding %s: %w", name, err)
    		}
    		gofiles = append(gofiles, file)
    	}
    	a.Package.CompiledGoFiles = gofiles
    	return nil
    }
    
    // vetConfig is the configuration passed to vet describing a single package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

    function override-kubectl {
        echo "overriding kubectl"
        echo "export PATH=${KUBE_HOME}/bin:\$PATH" > /etc/profile.d/kube_env.sh
    
        # source the file explicitly otherwise we have
        # issues on a ubuntu OS image finding the kubectl
        # shellcheck disable=SC1091
        source /etc/profile.d/kube_env.sh
    
        # Add ${KUBE_HOME}/bin into sudoer secure path.
        local sudo_path
        sudo_path=$(sudo env | grep "^PATH=")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    							Enum:        []interface{}{"Allow", "Deny"},
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

    normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top