Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 157 for flist (0.05 sec)

  1. src/runtime/netpoll_solaris.go

    		}
    	}
    }
    
    // netpoll checks for ready network connections.
    // Returns list of goroutines that become runnable.
    // delay < 0: blocks indefinitely
    // delay == 0: does not block, just polls
    // delay > 0: block for up to that many nanoseconds
    func netpoll(delay int64) (gList, int32) {
    	if portfd == -1 {
    		return gList{}, 0
    	}
    
    	var wait *timespec
    	var ts timespec
    	if delay < 0 {
    		wait = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. test/typeparam/listimp.dir/a.go

    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
    		~float32 | ~float64 |
    		~string
    }
    
    // List is a linked list of ordered values of type T.
    type List[T Ordered] struct {
    	Next *List[T]
    	Val  T
    }
    
    func (l *List[T]) Largest() T {
    	var max T
    	for p := l; p != nil; p = p.Next {
    		if p.Val > max {
    			max = p.Val
    		}
    	}
    	return max
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXShellScriptBuildPhase.java

    package org.gradle.ide.xcode.internal.xcodeproj;
    
    import com.dd.plist.NSArray;
    import com.dd.plist.NSString;
    
    import javax.annotation.Nullable;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Build phase which represents running a shell script.
     */
    public class PBXShellScriptBuildPhase extends PBXBuildPhase {
        private List<String> inputPaths;
        private List<String> outputPaths;
        @Nullable private String shellPath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/profile-list.go

    	return &cobra.Command{
    		Use:   "list",
    		Short: "Lists available Istio configuration profiles",
    		Long:  "The list subcommand lists the available Istio configuration profiles.",
    		Args:  cobra.ExactArgs(0),
    		RunE: func(cmd *cobra.Command, args []string) error {
    			return profileList(cmd, plArgs)
    		},
    	}
    }
    
    // profileList list all the builtin profiles.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. releasenotes/notes/injector-list.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 23892
    releaseNotes:
    - |
      **Added** `istioctl x injector list` command to show which namespaces have Istio sidecar injection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 28 09:17:03 UTC 2020
    - 287 bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/list.yaml.injected

                    expirationSeconds: 43200
                    path: istio-token
            - configMap:
                name: istio-ca-root-cert
              name: istiod-ca-cert
      status: {}
    kind: List
    metadata: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/tensor-list.pbtxt

      }
      attr {
        key: "num_elements"
        value {
          i: -1
        }
      }
      experimental_debug_info {
      }
    }
    library {
    }
    versions {
      producer: 76
    }
    
    # Verify that list element shape and dtype are expected.
    # CHECK:  tf.TensorListReserve{{.*}}(tensor<2xi32>, tensor<i32>) -> tensor<!tf_type.variant<tensor<*xf32>>>
    
    # Nested variant type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 29 04:41:05 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/typexpr.go

    	return -1
    }
    
    // typeList provides the list of types corresponding to the incoming expression list.
    // If an error occurred, the result is nil, but all list elements were type-checked.
    func (check *Checker) typeList(list []syntax.Expr) []Type {
    	res := make([]Type, len(list)) // res != nil even if len(list) == 0
    	for i, x := range list {
    		t := check.varType(x)
    		if !isValid(t) {
    			res = nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. cni/pkg/install/testdata/list-with-istio.conflist

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 724 bytes
    - Viewed (0)
  10. hack/testdata/multi-resource-list.json

    {
       "kind":"List",
       "apiVersion":"v1",
       "items":[
          {
            "kind":"Service",
            "apiVersion":"v1",
            "metadata":{
              "name":"mock",
              "labels":{
                "app":"mock"
              }
            },
            "spec":{
              "ports": [{
                "protocol": "TCP",
                "port": 99,
                "targetPort": 9949
              }],
              "selector":{
                "app":"mock"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top