Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 155 for gretty (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_location_roundtrip.mlir

    // This file should be written in the generic form with debug locations.
    // (that is, as if printed with `-mlir-print-debuginfo -mlir-print-op-generic`).
    // The test parses the file, prints it in the pretty form with debug locations,
    // then parses it back, then prints it in the generic form again.
    // This should be an exact roundtrip.
    // This is a rare example of a test where exact output checking makes
    // sense.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 05 14:24:12 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/registration/InstrumentationTransformRegisterer.java

                InstrumentationAnalysisTransform.class,
                spec -> {
                    spec.getFrom().attribute(INSTRUMENTED_ATTRIBUTE, NOT_INSTRUMENTED.getValue());
                    spec.getTo().attribute(INSTRUMENTED_ATTRIBUTE, ANALYZED_ARTIFACT.getValue());
                    spec.parameters(params -> {
                        params.getBuildService().set(service);
                        params.getContextId().set(contextId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/types_64bit.go

    // may observe operations that precede this operation to
    // occur after it, but no operation that occurs after it
    // on this thread can be observed to occur before it.
    //
    // WARNING: Use sparingly and with great care.
    //
    //go:nosplit
    func (u *Uint64) LoadAcquire() uint64 {
    	return LoadAcq64(&u.value)
    }
    
    // StoreRelease is a partially unsynchronized version
    // of Store that relaxes ordering constraints. Other threads
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/kustomizevisitor_test.go

    		dirPath: ".",
    		schema:  b.schema,
    		fSys:    fSys,
    	}
    	tv := &testVisitor{}
    	if err := kv.Visit(tv.Handle); err != nil {
    		t.Fatal(err)
    	}
    	if len(tv.Infos) != 4 {
    		t.Fatal(dump.Pretty(tv.Infos))
    	}
    	if string(kv.yml) != expectedContent {
    		t.Fatalf("expected:\n%s\nbut got:\n%s", expectedContent, string(kv.yml))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/mergepatch/util.go

    		return err.Error()
    	}
    
    	return y
    }
    
    func toYAML(v interface{}) (string, error) {
    	y, err := yaml.Marshal(v)
    	if err != nil {
    		return "", fmt.Errorf("yaml marshal failed:%v\n%v\n", err, dump.Pretty(v))
    	}
    
    	return string(y), nil
    }
    
    // HasConflicts returns true if the left and right JSON interface objects overlap with
    // different values in any key. All keys are required to be strings. Since patches of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/codegen.h

      // If true, generate program shape data for the ProgramShape method.
      bool gen_program_shape = false;
    
      // If true, emit a serialized HloProfilePrinterData protobuf that can be used
      // to pretty print HLO profile counters.
      bool gen_hlo_profile_printer_data = false;
    
      // If true, sets this executable as an XLA Runtime one.
      bool use_xla_runtime = false;
    };
    
    // Describes a generated metadata object file.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 01 22:03:27 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractTypeScopeTest.kt

                }
    
                testServices.assertions.assertEqualsToTestDataFileSibling(scopeStringRepresentation)
                testServices.assertions.assertEqualsToTestDataFileSibling(signaturePretty, extension = ".pretty.txt")
    
                val actualNames = prettyPrint {
                    appendLine("${KaTypeScope::class.simpleName}:")
                    renderContainedNamesIfExists(typeScope)
                    appendLine()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/go/doc/example_test.go

    // This is the package comment.
    package p
    
    import "fmt"
    
    // This comment is associated with the Greet function.
    func Greet(who string) {
    	fmt.Printf("Hello, %s!\n", who)
    }
    `
    	const test = `
    package p_test
    
    // This comment is associated with the ExampleGreet_world example.
    func ExampleGreet_world() {
    	Greet("world")
    }
    `
    
    	// Create the AST by parsing src and test.
    	fset := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsGroovyDSLIntegrationTest.groovy

                .addPluginWithPrintlnTask('greet', 'Hello from first plugin!', firstPluginId, "FirstPlugin")
                .publishAs("some", "artifact", pluginVersion, pluginPortal, executer)
                .allowAll()
            String secondPluginId = 'com.acme.greeter2'
            new PluginBuilder(file("greeter-second"))
                .addPluginWithPrintlnTask('greet2', 'Hello from second plugin!', secondPluginId, "SecondPlugin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. src/embed/internal/embedtest/testdata/.hidden/more/tip.txt

    #define struct union /* Great space saver */...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 13:50:44 UTC 2020
    - 45 bytes
    - Viewed (0)
Back to top