Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for classy (0.13 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    		return nil
    	}
    
    	// Initialize classes for all arguments.
    	p.From.Class = int8(c.aclass(&p.From) + 1)
    	p.To.Class = int8(c.aclass(&p.To) + 1)
    	for i := range p.RestArgs {
    		p.RestArgs[i].Addr.Class = int8(c.aclass(&p.RestArgs[i].Addr) + 1)
    	}
    
    	// Mirrors the argument list in Optab.
    	args := [...]int8{
    		p.From.Class - 1,
    		C_NONE, // p.Reg
    		C_NONE, // p.RestArgs[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          << tensor_info.encoding_case();
      return tensor_info.name();
    }
    
    // This class is used to generate new MLIR function name strings that are both
    // unique in the TF function library `flib_` and unique among the name strings
    // generated by the class object during its lifetime.
    //
    // In theory, this class is not necessary because we should simply take
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    	if a1 != 0 {
    		return &optab[a1-1]
    	}
    	a1 = int(p.From.Class)
    	if a1 == 0 {
    		a1 = c.aclass(&p.From) + 1
    		p.From.Class = int8(a1)
    	}
    	a1--
    
    	argsv := [3]int{C_NONE + 1, C_NONE + 1, C_NONE + 1}
    	for i, ap := range p.RestArgs {
    		argsv[i] = int(ap.Addr.Class)
    		if argsv[i] == 0 {
    			argsv[i] = c.aclass(&ap.Addr) + 1
    			ap.Addr.Class = int8(argsv[i])
    		}
    
    	}
    	a3 := argsv[0] - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_test.go

    						},
    						ServerName: EnvoyServerName,
    						HttpProtocolOptions: &core.Http1ProtocolOptions{
    							AcceptHttp_10: true,
    						},
    						Proxy_100Continue: true,
    					},
    					class:    istionetworking.ListenerClassGateway,
    					protocol: protocol.HTTP,
    				},
    			},
    		},
    		{
    			name: "Duplicate hosts in TLS filterChain",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    /// This function assumes the both operands are verified to have value
    /// attributes of broadcastable types.
    template <class AttrElementT,
              class ElementValueT = typename AttrElementT::ValueType,
              class CalculationT =
                  llvm::function_ref<ElementValueT(ElementValueT, ElementValueT)>>
    Attribute ConstFoldBinaryOpDenseDense(Type result_type, DenseElementsAttr lhs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/istio-workload-dashboard.json

          "id": 89,
          "links": [],
          "options": {
            "code": {
              "language": "plaintext",
              "showLineNumbers": false,
              "showMiniMap": false
            },
            "content": "<div class=\"dashboard-header text-center\">\n<span>WORKLOAD: $workload.$namespace</span>\n</div>",
            "mode": "html"
          },
          "pluginVersion": "10.1.5",
          "transparent": true,
          "type": "text"
        },
        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 102.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsScheduledJobCQ.java

    import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder.FilterFunctionBuilder;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public abstract class BsScheduledJobCQ extends EsAbstractConditionQuery {
    
        protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class;
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 98.1K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/istio-service-dashboard.json

          "id": 89,
          "links": [],
          "options": {
            "code": {
              "language": "plaintext",
              "showLineNumbers": false,
              "showMiniMap": false
            },
            "content": "<div class=\"dashboard-header text-center\">\n<span>SERVICE: $service</span>\n</div>",
            "mode": "html"
          },
          "pluginVersion": "10.1.5",
          "transparent": true,
          "type": "text"
        },
        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  9. src/crypto/x509/verify_test.go

    		currentTime:   1302726541,
    
    		// The StartCom root is not trusted by Windows when the default
    		// ServerAuth EKU is requested.
    		systemSkip: true,
    
    		expectedChains: [][]string{
    			{"dnssec-exp", "StartCom Class 1", "StartCom Certification Authority"},
    		},
    	},
    	{
    		name:          "dnssec-exp/AnyEKU",
    		leaf:          dnssecExpLeaf,
    		intermediates: []string{startComIntermediate},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

    import static org.gradle.testkit.runner.TaskOutcome.SKIPPED
    import static org.gradle.testkit.runner.TaskOutcome.SUCCESS
    import static org.gradle.testkit.runner.TaskOutcome.UP_TO_DATE
    
    class AndroidSantaTrackerCachingSmokeTest extends AbstractAndroidSantaTrackerSmokeTest {
    
        def "can cache Santa Tracker Android application (agp=#agpVersion)"() {
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
Back to top