Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 116 for wastage (0.16 sec)

  1. src/crypto/aes/asm_ppc64x.s

    	STXVD2X	STAGE, (R0+OUTENC)
    	STXVD2X	STAGE, (R0+OUTDEC)
    	VCIPHERLAST	KEY, RCON, KEY           // vcipherlast 3,3,4
    	ADD	$16, OUTENC, OUTENC
    	ADD	$-16, OUTDEC, OUTDEC
    
    	VSLDOI	$8, IN0, IN1, STAGE              // vsldoi 7,1,2,8
    	VXOR	IN0, TMP, IN0                    // vxor 1,1,6
    	VSLDOI	$12, ZERO, TMP, TMP              // vsldoi 6,0,6,12
    	STXVD2X	STAGE, (R0+OUTENC)
    	STXVD2X	STAGE, (R0+OUTDEC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                        val name = "Compile script ${scriptPath.substringAfterLast(File.separator)} ($stage)"
                        return BuildOperationDescriptor.displayName(name).name(name).details(object : Details {
                            override fun getStage(): String = stage
                            override fun getLanguage(): String = "KOTLIN"
                        })
                    }
                })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            given:
            file("src/main/java/compile/test/FxApp.java") << """
                import javafx.application.Application;
                import javafx.stage.Stage;
    
                public class FxApp extends Application {
                    public void start(Stage stage) {
                    }
                }
            """
    
            expect:
            succeeds("compileJava")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    	want := map[string]string{"pandas": "are awesome", "dogs": "are okay"}
    	for _, event := range backend.events {
    		if event.Stage != auditinternal.StageResponseComplete {
    			t.Errorf("expected event stage to be complete, got: %s", event.Stage)
    		}
    
    		for wantK, wantV := range want {
    			gotV, ok := event.Annotations[wantK]
    			if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

                if (state == null) {
                    // This shouldn't be the case, however, start and complete events are filtered in the prior stage when the logging level is > lifecycle
                    // Should instead move the filtering after this stage
                    break;
                }
                if (state instanceof OperationGroup) {
                    return (OperationGroup) state;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

    message Event {
      // AuditLevel at which event was generated
      optional string level = 1;
    
      // Unique audit ID, generated for each request.
      optional string auditID = 2;
    
      // Stage of the request handling when this event instance was generated.
      optional string stage = 3;
    
      // RequestURI is the request URI as sent by the client to a server.
      optional string requestURI = 4;
    
      // Verb is the kubernetes verb associated with the request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PartialEvaluatorTest.kt

                    "\npluginManagement { repositories {} }; include(\"stage-2\")"
                )
    
            val pluginManagementFragment =
                Program.PluginManagement(originalSource.fragment(1..15, 17..36))
    
            val scriptSource =
                originalSource.map { text("\n                               ; include(\"stage-2\")") }
    
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 38.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      bool strict_clusters =
          tensorflow::GetMlirCommonFlags()->tf_mlir_enable_strict_clusters;
      pm.addNestedPass<FuncOp>(
          mlir::tf_executor::CreateTFExecutorGraphPruningPass(ops_to_preserve));
      // It is assumed at this stage there are no V1 control flow ops as Graph
      // functionalization is ran before import. Ops can be lifted out of
      // tf_executor dialect islands/graphs.
      pm.addNestedPass<FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. src/internal/reflectlite/type.go

    func (n name) tag() string {
    	if !n.hasTag() {
    		return ""
    	}
    	i, l := n.readVarint(1)
    	i2, l2 := n.readVarint(1 + i + l)
    	return unsafe.String(n.data(1+i+l+i2, "non-empty string"), l2)
    }
    
    func pkgPath(n abi.Name) string {
    	if n.Bytes == nil || *n.DataChecked(0, "name flag field")&(1<<2) == 0 {
    		return ""
    	}
    	i, l := n.ReadVarint(1)
    	off := 1 + i + l
    	if n.HasTag() {
    		i2, l2 := n.ReadVarint(off)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/filters/request_deadline_test.go

    				if auditEventGot == nil {
    					t.Fatal("expected an audit event object but got nil")
    				}
    				if auditEventGot.Stage != auditinternal.StageResponseStarted {
    					t.Errorf("expected audit event Stage: %s, but got: %s", auditinternal.StageResponseStarted, auditEventGot.Stage)
    				}
    				if auditEventGot.ResponseStatus == nil {
    					t.Fatal("expected a ResponseStatus field of the audit event object, but got nil")
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:34 UTC 2022
    - 16.7K bytes
    - Viewed (0)
Back to top