Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for nonpic (0.19 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/BUILD

    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        # TODO: b/288344501 - Enable OSS tests again when stable-quant-opt works well.
        default_tags = [
            "no_oss",
            "no_pip",
        ],
        driver = "//tensorflow/compiler/mlir/quantization/stablehlo:run_lit.sh",
        size_override = {
        },
        tags_override = {
        },
        test_file_exts = ["mlir"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

        public val MODULE_STATE_MODIFICATION: Topic<KotlinModuleStateModificationListener> =
            Topic(KotlinModuleStateModificationListener::class.java, Topic.BroadcastDirection.TO_CHILDREN, true)
    
        public val MODULE_OUT_OF_BLOCK_MODIFICATION: Topic<KotlinModuleOutOfBlockModificationListener> =
            Topic(KotlinModuleOutOfBlockModificationListener::class.java, Topic.BroadcastDirection.TO_CHILDREN, true)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. internal/event/target/nsq_test.go

    					Name:      "127.0.0.1",
    					Port:      4150,
    					IsPortSet: true,
    				},
    				Topic: "topic",
    			},
    			wantErr: false,
    		},
    		{
    			name: "test4_emptynsqdaddr",
    			fields: fields{
    				Enable:      true,
    				NSQDAddress: xnet.Host{},
    				Topic:       "topic",
    			},
    			wantErr: true,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			n := NSQArgs{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. pkg/ctrlz/ctrlz.go

    				return ipnet.IP.String()
    			}
    		}
    	}
    	return ""
    }
    
    type topic struct {
    	Name string
    	URL  string
    }
    
    func getTopics() []topic {
    	topicMutex.Lock()
    	defer topicMutex.Unlock()
    
    	topics := make([]topic, 0, len(allTopics))
    	for _, t := range allTopics {
    		topics = append(topics, topic{Name: t.Title(), URL: "/" + t.Prefix() + "z/"})
    	}
    
    	return topics
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/api/internal/DocumentationRegistry.java

        public String getDocumentationRecommendationFor(String topic, String id) {
            return getRecommendationString(topic, getDocumentationFor(id));
        }
    
        public String getDocumentationRecommendationFor(String topic, String id, String section) {
            return getRecommendationString(topic, getDocumentationFor(id, section));
        }
    
        public String getDocumentationRecommendationFor(String topic, DocLink docLink) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 14:14:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/Documentation.java

            private final String page;
            private final String section;
    
            private final String topic;
    
            private UserGuide(String id, @Nullable String section) {
                this.page = Preconditions.checkNotNull(id);
                this.section = section;
                this.topic = null;
            }
    
            @Override
            public String getUrl() {
                if (section == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. pyproject.toml

        "Programming Language :: Python :: 3",
        "Programming Language :: Python",
        "Topic :: Internet",
        "Topic :: Software Development :: Libraries :: Application Frameworks",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Topic :: Software Development :: Libraries",
        "Topic :: Software Development",
        "Typing :: Typed",
        "Development Status :: 4 - Beta",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/help/help.go

    Additional help topics:
    {{range .Commands}}{{if and (not .Runnable) (not .Commands)}}
    	{{.Name | printf "%-15s"}} {{.Short}}{{end}}{{end}}
    
    Use "go help{{with .LongName}} {{.}}{{end}} <topic>" for more information about that topic.
    {{end}}
    `
    
    var helpTemplate = `{{if .Runnable}}usage: {{.UsageLine}}
    
    {{end}}{{.Long | trim}}
    `
    
    var documentationTemplate = `{{range .}}{{if .Short}}{{.Short | capitalize}}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. cmd/net.go

    func sortIPs(ipList []string) []string {
    	if len(ipList) == 1 {
    		return ipList
    	}
    
    	var ipV4s []net.IP
    	var nonIPs []string
    	for _, ip := range ipList {
    		nip := net.ParseIP(ip)
    		if nip != nil {
    			ipV4s = append(ipV4s, nip)
    		} else {
    			nonIPs = append(nonIPs, ip)
    		}
    	}
    
    	sort.Slice(ipV4s, func(i, j int) bool {
    		// This case is needed when all ips in the list
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. internal/event/target/mqtt.go

    )
    
    // MQTTArgs - MQTT target arguments.
    type MQTTArgs struct {
    	Enable               bool           `json:"enable"`
    	Broker               xnet.URL       `json:"broker"`
    	Topic                string         `json:"topic"`
    	QoS                  byte           `json:"qos"`
    	User                 string         `json:"username"`
    	Password             string         `json:"password"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top