Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,828 for okdown (0.28 sec)

  1. src/go/build/syslist.go

    package build
    
    // Note that this file is read by internal/goarch/gengoarch.go and by
    // internal/goos/gengoos.go. If you change this file, look at those
    // files as well.
    
    // knownOS is the list of past, present, and future known GOOS values.
    // Do not remove from this list, as it is used for filename matching.
    // If you add an entry to this list, look at unixOS, below.
    var knownOS = map[string]bool{
    	"aix":       true,
    	"android":   true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

    // operand to be a constant value).
    enum class ValueConstraint {
      // Operand must have statically known rank.
      kRank = 0,
      // Operand must have statically known shape (all dimensions are known at
      // compile time).
      kShape = 1,
      // Operand must have statically known value (operand must be defined by a
      // constant operation).
      kValue = 2,
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. src/crypto/elliptic/elliptic.go

    // that doesn't involve any mathematical operations, only FillBytes and Bit.
    type unmarshaler interface {
    	Unmarshal([]byte) (x, y *big.Int)
    	UnmarshalCompressed([]byte) (x, y *big.Int)
    }
    
    // Assert that the known curves implement unmarshaler.
    var _ = []unmarshaler{p224, p256, p384, p521}
    
    // Unmarshal converts a point, serialized by [Marshal], into an x, y pair. It is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. pkg/envoy/proxy.go

    // limitations under the License.
    
    package envoy
    
    import (
    	"bytes"
    	"fmt"
    	"os"
    	"os/exec"
    	"strings"
    	"syscall"
    
    	"google.golang.org/protobuf/types/known/durationpb"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pilot/pkg/util/network"
    	"istio.io/istio/pkg/env"
    	common_features "istio.io/istio/pkg/features"
    	"istio.io/istio/pkg/log"
    )
    
    type envoy struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. .gitattributes

    # Always check-out / check-in files with LF line endings.
    * text=auto eol=lf
    
    hack/verify-flags/known-flags.txt merge=union
    test/test_owners.csv merge=union
    
    **/zz_generated.*.go linguist-generated=true
    **/types.generated.go linguist-generated=true
    **/generated.pb.go linguist-generated=true
    **/generated.proto
    **/types_swagger_doc_generated.go linguist-generated=true
    api/openapi-spec/*.json linguist-generated=true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 22 11:36:07 UTC 2022
    - 459 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/notfoundhandler/not_found_handler.go

    	apirequest "k8s.io/apiserver/pkg/endpoints/request"
    )
    
    // New returns an HTTP handler that is meant to be executed at the end of the delegation chain.
    // It checks if the request have been made before the server has installed all known HTTP paths.
    // In that case it returns a 503 response otherwise it returns a 404.
    //
    // Note that we don't want to add additional checks to the readyz path as it might prevent fixing bricked clusters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 21 13:25:33 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/test/groovy/org/gradle/model/internal/core/DomainObjectCollectionBackedModelMapTest.groovy

            when:
            modelMap.create("alma", List)
    
            then:
            def e = thrown InvalidUserDataException
            e.message.contains("Cannot create a List because this type is not known to the collection. Known types are: SomeType")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/strconv/decimal_test.go

    		d := NewDecimal(test.i)
    		d.RoundDown(test.nd)
    		s := d.String()
    		if s != test.down {
    			t.Errorf("Decimal %v RoundDown %d = %v, want %v",
    				test.i, test.nd, s, test.down)
    		}
    		d = NewDecimal(test.i)
    		d.Round(test.nd)
    		s = d.String()
    		if s != test.round {
    			t.Errorf("Decimal %v Round %d = %v, want %v",
    				test.i, test.nd, s, test.down)
    		}
    		d = NewDecimal(test.i)
    		d.RoundUp(test.nd)
    		s = d.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 3K bytes
    - Viewed (0)
  9. pilot/pkg/xds/sds.go

    	envoytls "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/protobuf/types/known/anypb"
    	"google.golang.org/protobuf/types/known/durationpb"
    
    	mesh "istio.io/api/mesh/v1alpha1"
    	credscontroller "istio.io/istio/pilot/pkg/credentials"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/InputFingerprinter.java

             */
            ImmutableSortedMap<String, ValueSnapshot> getAllValueSnapshots();
    
            /**
             * Returns the files fingerprinted just now.
             */
            ImmutableSortedMap<String, CurrentFileCollectionFingerprint> getFileFingerprints();
    
            /**
             * Returns all the file fingerprints, including the previously known ones.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top