Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 7,138 for sameId (0.11 sec)

  1. pkg/proxy/ipvs/ipset/ipset.go

    	// IP is the entry's IP.  The IP address protocol corresponds to the HashFamily of IPSet.
    	// All entries' IP addresses in the same ip set has same the protocol, IPv4 or IPv6.
    	IP string
    	// Port is the entry's Port.
    	Port int
    	// Protocol is the entry's Protocol.  The protocols of entries in the same ip set are all
    	// the same.  The accepted protocols are TCP, UDP and SCTP.
    	Protocol string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    package driver
    
    import (
    	"fmt"
    	"net/url"
    	"reflect"
    	"strconv"
    	"strings"
    	"sync"
    )
    
    // config holds settings for a single named config.
    // The JSON tag name for a field is used both for JSON encoding and as
    // a named variable.
    type config struct {
    	// Filename for file-based output formats, stdout by default.
    	Output string `json:"-"`
    
    	// Display options.
    	CallTree            bool    `json:"call_tree,omitempty"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-control-ret-same-island.pbtxt

    Andy Ly <******@****.***> 1591818565 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/tf_concrete_function_loading_test.cc

    TEST_F(SavedConcreteFunctionLoadingTest, SuccessfulLoad) {
      // `saved` has 1 input, 2 captures, 3 outputs
      SavedConcreteFunction saved;
      *saved.mutable_canonicalized_input_signature() =
          testing::SingleArgInputSignature();
      *saved.mutable_output_signature() = testing::ThreeReturnOutputSignature();
      saved.add_bound_inputs(2);
      saved.add_bound_inputs(5);
    
      // `func` has 3 inputs, 3 outputs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. test/fixedbugs/bug476.go

    // compile
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Logical operation on named boolean type returns the same type,
    // supporting an implicit conversion to an interface type.  This used
    // to crash gccgo.
    
    package p
    
    type B bool
    
    func (b B) M() {}
    
    type I interface {
    	M()
    }
    
    func F(a, b B) I {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 434 bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectCollectionSpec.groovy

            when:
            container.named("a", method)
            then:
            ex = thrown(Throwable)
            assertDoesNotAllowMethod(ex, methodUnderTest)
    
            when:
            container.named("a", getType(), method)
            then:
            ex = thrown(Throwable)
            assertDoesNotAllowMethod(ex, methodUnderTest)
    
            when:
            container.withType(container.type).named("a").configure(method)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishFeaturesJavaIntegTest.groovy

            "with the same name and no classifier"               | "publishTest-1.9.jar"                  | null               | "Invalid publication 'ivy': multiple artifacts with the identical name, extension, type and classifier ('publishTest', jar', 'jar', 'null'"
            "with the same name and a classifier"                | "publishTest-1.9.jar"                  | "optional-feature" | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryNamedTypeIntegrationTest.groovy

            result.assertTaskSkipped(":a")
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE, because = "Flaky")
        def "cannot mutate named instance from groovy"() {
            buildFile << """
                interface Thing extends Named { }
    
                def t1 = objects.named(Thing, "t1")
                task changeProp {
                    doLast {
                        t1.name = "123"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 05:39:53 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

     *
     * <p>Features are classified by their capabilities. Each variant of a feature provides at least
     * the same set of capabilities as the feature itself. Since all variants of a feature are derived
     * from the same sources, they all expose the same API or "content" and thus provide the same
     * capabilities. Some variants may expose additional capabilities than those of its owning feature,
     * for example with fat jars.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/PolymorphicManagedTypeIntegrationTest.groovy

                    @Mutate
                    void setName(Named named) {
                        named.name = "superclass"
                    }
    
                    @Mutate
                    void addTask(ModelMap<Task> tasks, Named named) {
                        tasks.create("echo") {
                            it.doLast {
                                println "name: $named.name"
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top