Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 137 for stage1 (0.28 sec)

  1. pkg/volume/csi/fake/fake_client.go

    	f.nodePublishedVolumes[volID] = CSIVolume{
    		Path:          deviceMountPath,
    		VolumeContext: volumeContext,
    	}
    }
    
    // GetNodeStagedVolumes returns node staged volumes
    func (f *NodeClient) GetNodeStagedVolumes() map[string]CSIVolume {
    	return f.nodeStagedVolumes
    }
    
    // AddNodeStagedVolume adds specified volume to nodeStagedVolumes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 16K bytes
    - Viewed (0)
  2. src/encoding/json/scanner.go

    func state1(s *scanner, c byte) int {
    	if '0' <= c && c <= '9' {
    		s.step = state1
    		return scanContinue
    	}
    	return state0(s, c)
    }
    
    // state0 is the state after reading `0` during a number.
    func state0(s *scanner, c byte) int {
    	if c == '.' {
    		s.step = stateDot
    		return scanContinue
    	}
    	if c == 'e' || c == 'E' {
    		s.step = stateE
    		return scanContinue
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/compile/internal/test/abiutils_test.go

    // - floating point: X0 - X14
    var configAMD64 = abi.NewABIConfig(9, 15, 0, 1)
    
    func TestMain(m *testing.M) {
    	ssagen.Arch.LinkArch = &x86.Linkamd64
    	ssagen.Arch.REGSP = x86.REGSP
    	ssagen.Arch.MAXWIDTH = 1 << 50
    	types.MaxWidth = ssagen.Arch.MAXWIDTH
    	base.Ctxt = obj.Linknew(ssagen.Arch.LinkArch)
    	base.Ctxt.DiagFunc = base.Errorf
    	base.Ctxt.DiagFlush = base.FlushErrors
    	base.Ctxt.Bso = bufio.NewWriter(os.Stdout)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

                OperationState state = operationsInProgress.get(current);
                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) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classpath/TransformedClassPathTest.groovy

            classPathAsList(AGENT_INSTRUMENTATION_MARKER.fileName, "instrumented/instrumented-1.jar")                                                                           | "Missing the instrumented or original entry for classpath...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 11:14:30 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/canonicalize.mlir

    ^bb0(%arg0: tensor<4x4x4xf32>) :
      %shape0 = arith.constant dense<[16, 4]> : tensor<2xi32>
      %shape1 = arith.constant dense<[64]> : tensor<1xi32>
      %0 = "tfl.reshape"(%arg0, %shape0) : (tensor<4x4x4xf32>, tensor<2xi32>) -> tensor<16x4xf32>
      %1 = "tfl.reshape"(%0, %shape1) : (tensor<16x4xf32>, tensor<1xi32>) -> tensor<64xf32>
      %2 = "tfl.reshape"(%0, %shape1) : (tensor<16x4xf32>, tensor<1xi32>) -> tensor<64xf32>
      %3 = arith.addf %1, %2 : tensor<64xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    TIP: This is one example of a staged migration. It may make more sense to include resource processing — such as properties files — and packaging with the compilation in this stage.
    
    One important question you will have to ask yourself is how many tasks to migrate in each stage.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top