Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 664 for stableId (0.46 sec)

  1. src/syscall/mksysnum_freebsd.pl

    		}
    		if($name =~ /^SYS_CAP_+/ || $name =~ /^SYS___CAP_+/){
    			next
    		}
    
    		print "	$name = $num;  // $proto\n";
    
    		# We keep Capsicum syscall numbers for FreeBSD
    		# 9-STABLE here because we are not sure whether they
    		# are mature and stable.
    		if($num == 513){
    			print " SYS_CAP_NEW = 514 // { int cap_new(int fd, uint64_t rights); }\n";
    			print " SYS_CAP_GETRIGHTS = 515 // { int cap_getrights(int fd, \\\n";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  2. hack/get-build.sh

      echo '  (e.g. "v1.0.6", "v1.2.0-alpha.1.881+376438b69c7612") or a version'
      echo '  publication of the form <bucket>/<version> (e.g. "release/stable",'
      echo '  "ci/latest-1").  Some common ones are:'
      echo '    - "release/stable"'
      echo '    - "release/latest"'
      echo '    - "ci/latest"'
      echo '  See the docs on getting builds for more information about version'
      echo '  publication.'
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/syscall/ztypes_openbsd_arm.go

    	SizeofRtMsghdr         = 0x60
    	SizeofRtMetrics        = 0x38
    )
    
    type IfMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	Tableid uint16
    	Pad1    uint8
    	Pad2    uint8
    	Addrs   int32
    	Flags   int32
    	Xflags  int32
    	Data    IfData
    }
    
    type IfData struct {
    	Type         uint8
    	Addrlen      uint8
    	Hdrlen       uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 02:35:39 UTC 2018
    - 6.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/test/cmd/config_test.go

    	var tests = []struct {
    		name     string
    		args     string
    		expected bool
    	}{
    		{
    			name:     "valid: latest stable Kubernetes version should not throw the warning that a supported etcd version cannot be found",
    			args:     "--kubernetes-version=stable-1",
    			expected: false,
    		},
    	}
    
    	kubeadmPath := getKubeadmPath()
    	for _, rt := range tests {
    		t.Run(rt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:45:06 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. samples/ambient-argo/README.md

    In this reference architecture, three tags are used: stable, rapid, and default (the default tag will manage any gateways which do not use the `istio.io/rev` label).  In the example application, we have included an ingress gateway on the default tag, and two waypoints for the reviews and details services, which use the rapid and stable tags.  At the time of writing, the rapid revision points to revision 1-19-3, while the stable and default revisions point to revision 1-18-5.  The tags definitions...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/graph/StandardMutableUndirectedGraphTest.java

        return Arrays.asList(
            new Object[][] {
              {false, ElementOrder.unordered()},
              {true, ElementOrder.unordered()},
              {false, ElementOrder.stable()},
              {true, ElementOrder.stable()},
            });
      }
    
      private final boolean allowsSelfLoops;
      private final ElementOrder<Integer> incidentEdgeOrder;
    
      public StandardMutableUndirectedGraphTest(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 10 17:54:18 UTC 2020
    - 2K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemReporter.java

    public interface ProblemReporter {
        interface ProblemConsumer {
            void accept(Throwable throwable);
        }
    
        /**
         * A stable identifier for this reporter. Reporters are ordered by id before {@link #report(File, ProblemConsumer)} is called, so
         * that the output is generated in a stable order rather than in an order based on the order that implementations
         * are discovered.
         */
        String getId();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/conversion_test.go

    		u.Object["numv2"] = u.Object["num"]
    		u.Object["contentv2"] = u.Object["content"]
    		delete(u.Object, "num")
    		delete(u.Object, "content")
    	} else if currentAPIVersion == "stable.example.com/v1alpha1" && desiredAPIVersion == "stable.example.com/v1beta1" {
    		// same schema
    	} else if currentAPIVersion == "stable.example.com/v1beta1" && desiredAPIVersion == "stable.example.com/v1alpha1" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 47.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/RateLimiter.java

     *
     * <p>It is possible to configure a {@code RateLimiter} to have a warmup period during which time
     * the permits issued each second steadily increases until it hits the stable rate.
     *
     * <p>As an example, imagine that we have a list of tasks to execute, but we don't want to submit
     * more than 2 per second:
     *
     * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/mkall.sh

    	mksyscall="go run mksyscall.go -l32"
    	mksysnum="go run mksysnum.go 'https://cgit.freebsd.org/src/plain/sys/kern/syscalls.master?h=stable/12'"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    freebsd_amd64)
    	mkerrors="$mkerrors -m64"
    	mksysnum="go run mksysnum.go 'https://cgit.freebsd.org/src/plain/sys/kern/syscalls.master?h=stable/12'"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    freebsd_arm)
    	mkerrors="$mkerrors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:37:23 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top