Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for relu (0.1 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                            newClasspath.from(v2.configurations.named("runtimeClasspath"), v2Jar)
    
                            onlyModified.set(false)
                            failOnModification.set(false) // we rely on the rich report to fail
    
                            txtOutputFile.set(file("build/japi-report.txt"))
    
                            richReport {
    
                                title.set("Gradle Binary Compatibility Check")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

    import java.io.IOException;
    import java.io.StringWriter;
    import java.io.Writer;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Locale;
    import java.util.regex.Pattern;
    
    // TODO Do not rely on default encoding
    @SuppressWarnings("StringCaseLocaleUsage")
    public class TextUtil {
        private static final Pattern WHITESPACE = Pattern.compile("\\s*");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    		// webhook.
    		if shouldLead && !configCluster && m.caBundleWatcher != nil {
    			// Patch injection webhook cert
    			// This requires RBAC permissions - a low-priv Istiod should not attempt to patch but rely on
    			// operator or CI/CD
    			if features.InjectionWebhookConfigName != "" {
    				log.Infof("initializing injection webhook cert patcher for cluster %s", cluster.ID)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/go/types/decl.go

    			}
    
    			// Determine if the type name is an alias or not. For
    			// package-level objects, use the object map which
    			// provides syntactic information (which doesn't rely
    			// on the order in which the objects are set up). For
    			// local objects, we can rely on the order, so use
    			// the object's predicate.
    			// TODO(gri) It would be less fragile to always access
    			// the syntactic information. We should consider storing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. security/pkg/nodeagent/sds/sdsservice.go

    			// of resources, and failures here are generally due to temporary networking issues to the CA
    			// rather than a result of configuration issues, which trigger updates in Istiod when resolved.
    			// Instead, we rely on the client to retry (with backoff) on failures.
    			return nil, fmt.Errorf("failed to generate secret for %v: %v", resourceName, err)
    		}
    
    		res := protoconv.MessageToAny(toEnvoySecret(secret, s.rootCaPath, s.pkpConf))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. tests/integration/security/pass_through_filter_chain_test.go

    						// This means that even for ports that support HTTP, we won't be able to check headers
    						// to confirm that mTLS was used. To work around this, we configure our 2 workload-only
    						// ports differently for each test and rely on allow/deny for each to indicate whether
    						// mtls was used.
    						Source(config.YAML(`apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: {{ .To.ServiceName }}-se
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. cni/pkg/cmd/root.go

    	registerEnvironment(name, value, usage)
    }
    
    func registerEnvironment[T env.Parseable](name string, defaultValue T, usage string) {
    	envName := strings.Replace(strings.ToUpper(name), "-", "_", -1)
    	// Note: we do not rely on istio env package to retrieve configuration. We relies on viper.
    	// This is just to make sure the reference doc tool can generate doc with these vars as env variable at istio.io.
    	env.Register(envName, defaultValue, usage)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. docs/fr/docs/features.md

    Cela signifie aussi que, dans la plupart des cas, vous pouvez fournir l'objet reçu d'une requête **directement à la base de données**, comme tout est validé automatiquement.
    
    Inversement, dans la plupart des cas vous pourrez juste envoyer l'objet récupéré de la base de données **directement au client**
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

       * defer that to Range, since it's ContiguousSet.create() that's used to create the sets. However,
       * that gets messy here, and we already have null tests for Range.
       */
    
      /*
       * These generators also rely on consecutive integer inputs (not necessarily in order, but no
       * holes).
       */
    
      // SetCreationTester has some tests that pass in duplicates. Dedup them.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. src/runtime/os_plan9.go

    //go:nosplit
    func exit(e int32) {
    	var status []byte
    	if e == 0 {
    		status = emptystatus
    	} else {
    		// build error string
    		var tmp [32]byte
    		sl := itoa(tmp[:len(tmp)-1], uint64(e))
    		// Don't append, rely on the existing data being zero.
    		status = sl[:len(sl)+1]
    	}
    	goexitsall(&status[0])
    	exits(&status[0])
    }
    
    // May run with m.p==nil, so write barriers are not allowed.
    //
    //go:nowritebarrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top