Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 318 for Res (0.02 sec)

  1. src/crypto/internal/nistec/p256_asm.go

    // If cond is not 0, sets val = -val mod p.
    //
    //go:noescape
    func p256NegCond(val *p256Element, cond int)
    
    // If cond is 0, sets res = b, otherwise sets res = a.
    //
    //go:noescape
    func p256MovCond(res, a, b *P256Point, cond int)
    
    //go:noescape
    func p256BigToLittle(res *p256Element, in *[32]byte)
    
    //go:noescape
    func p256LittleToBig(res *[32]byte, in *p256Element)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. cmd/utils_test.go

    		RequestURI string      `json:"reqURI"`
    		Header     http.Header `json:"header"`
    	}
    	res := jsonResult{}
    	if err = json.Unmarshal([]byte(strings.ReplaceAll(jsonReq, "%%", "%")), &res); err != nil {
    		t.Fatal(err)
    	}
    
    	// Look for expected method.
    	if res.Method != http.MethodGet {
    		t.Fatalf("Unexpected method %s, expected 'GET'", res.Method)
    	}
    
    	// Look for expected query values
    	expectedQuery := url.Values{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 23 21:28:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils_test.cc

      QuantMethod quantization_method =
          tensorflow::quantization::QuantizationMethod::METHOD_STATIC_RANGE_INT8;
      auto res = FillAttributesForUniformQuantizedAddOp(
          test_peer.rewriter_, op, identifier_to_attr, quantization_method,
          /*enable_per_channel_quantization=*/false);
      ASSERT_TRUE(succeeded(res));
      ASSERT_EQ(2147483647, op.getLhsQuantizationMaxValAttr().getInt());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 11 00:47:05 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    				Exact: v,
    			}}
    		}
    		res = append(res, sm)
    	}
    	return res
    }
    
    func stringToPort(rules []string) []uint32 {
    	res := make([]uint32, 0, len(rules))
    	for _, m := range rules {
    		p, err := strconv.ParseUint(m, 10, 32)
    		if err != nil || p > 65535 {
    			continue
    		}
    		res = append(res, uint32(p))
    	}
    	return res
    }
    
    func stringToIP(rules []string) []*security.Address {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. istioctl/pkg/precheck/precheck.go

    			}
    		}
    		if verificationImpacted {
    			res := ObjectToInstance(dr)
    			messages.Add(msg.NewUpdateIncompatibility(res,
    				"VERIFY_CERTIFICATE_AT_CLIENT", "1.20",
    				"previously, TLS verification was skipped. Set `insecureSkipVerify` if this behavior is desired", "1.20"))
    		}
    		if sniImpacted {
    			res := ObjectToInstance(dr)
    			messages.Add(msg.NewUpdateIncompatibility(res,
    				"ENABLE_AUTO_SNI", "1.20",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. pilot/pkg/security/model/authentication.go

    	return pm.ConstructSdsSecretConfig(name)
    }
    
    func AppendURIPrefixToTrustDomain(trustDomainAliases []string) []string {
    	res := make([]string, 0, len(trustDomainAliases))
    	for _, td := range trustDomainAliases {
    		res = append(res, spiffe.URIPrefix+td+"/")
    	}
    	return res
    }
    
    // ApplyToCommonTLSContext completes the commonTlsContext
    func ApplyToCommonTLSContext(tlsContext *tls.CommonTlsContext, proxy *model.Proxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

                            final SuggestIndexResponse res = indexFromQueryLog(queryLogs.toArray(new QueryLog[queryLogs.size()]));
                            errors.addAll(res.getErrors());
                            numberOfSuggestDocs += res.getNumberOfSuggestDocs();
                            numberOfInputDocs += res.getNumberOfInputDocs();
                            queryLogs.clear();
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. cmd/global-heal.go

    	defer close(results)
    
    	go func() {
    		for res := range results {
    			if res.entryDone {
    				tracker.setObject(res.name)
    				if time.Since(tracker.getLastUpdate()) > time.Minute {
    					healingLogIf(ctx, tracker.update(ctx))
    				}
    				continue
    			}
    
    			tracker.updateProgress(res.success, res.skipped, res.bytes)
    		}
    	}()
    
    	var retErr error
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry.go

    		}
    		m = append(m, cfg)
    	}
    
    	var res any
    	// Finally, compute the actual filters based on the protoc
    	switch protocol {
    	case networking.ListenerProtocolHTTP:
    		res = buildHTTPTelemetryFilter(class, m)
    	default:
    		res = buildTCPTelemetryFilter(class, m)
    	}
    
    	// Update cache
    	t.computedMetricsFilters[key] = res
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ads_test.go

    	nonce := ""
    	sendEDSReqAndVerify := func(clusterName string) {
    		res := ads.RequestResponseAck(t, &discovery.DiscoveryRequest{
    			ResourceNames: []string{clusterName},
    			VersionInfo:   version,
    			ResponseNonce: nonce,
    		})
    		version = res.VersionInfo
    		nonce = res.Nonce
    		got := xdstest.MapKeys(xdstest.ExtractLoadAssignments(xdstest.UnmarshalClusterLoadAssignment(t, res.Resources)))
    		if len(got) != 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top