Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 312 for unnamed (0.25 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

        const auto &output_tensor = (*subgraph.tensors())[buffer];
        std::cout << "\tname: '"
                  << (output_tensor->name() ? output_tensor->name()->str()
                                            : "<<unnamed>>")
                  << "' buffer: " << buffer;
        if (loc) std::cout << llvm::formatv(" {0}", loc(id)).str();
        std::cout << '\n';
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

                // For java.util.concurrent.CountDownLatch being serialized reflectively by configuration cache
                executer.withArgument('-Dorg.gradle.jvmargs=--add-opens java.base/java.util.concurrent=ALL-UNNAMED --add-opens java.base/java.util.concurrent.locks=ALL-UNNAMED')
            }
    
            configureGarbageCollectionHeapEventsFor(256, 512, 100, garbageCollector.monitoringStrategy.thrashingThreshold + 0.2)
            waitForImmediateDaemonExpiration()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  3. src/go/types/typestring.go

    	if n == 0 {
    		// no result
    		return
    	}
    
    	w.byte(' ')
    	if n == 1 && (w.ctxt != nil || sig.results.vars[0].name == "") {
    		// single unnamed result (if type hashing, name must be ignored)
    		w.typ(sig.results.vars[0].typ)
    		return
    	}
    
    	// multiple or named result(s)
    	w.tuple(sig.results, false)
    }
    
    // subscript returns the decimal (utf8) representation of x using subscript digits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/typestring.go

    	if n == 0 {
    		// no result
    		return
    	}
    
    	w.byte(' ')
    	if n == 1 && (w.ctxt != nil || sig.results.vars[0].name == "") {
    		// single unnamed result (if type hashing, name must be ignored)
    		w.typ(sig.results.vars[0].typ)
    		return
    	}
    
    	// multiple or named result(s)
    	w.tuple(sig.results, false)
    }
    
    // subscript returns the decimal (utf8) representation of x using subscript digits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/internal/xcoff/xcoff.go

    	C_STAT    = 3   // Static symbol
    	C_BLOCK   = 100 // Beginning or end of inner block
    	C_FCN     = 101 // Beginning or end of function
    	C_FILE    = 103 // Source file name and compiler information
    	C_HIDEXT  = 107 // Unnamed external symbol
    	C_BINCL   = 108 // Beginning of include file
    	C_EINCL   = 109 // End of include file
    	C_WEAKEXT = 111 // Weak external symbol
    	C_DWARF   = 112 // DWARF symbol
    	C_GSYM    = 128 // Global variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/signature.go

    			var recvTParams []*TypeParam
    			if rname != nil {
    				// recv should be a Named type (otherwise an error is reported elsewhere)
    				// Also: Don't report an error via genericType since it will be reported
    				//       again when we type-check the signature.
    				// TODO(gri) maybe the receiver should be marked as invalid instead?
    				if recv := asNamed(check.genericType(rname, nil)); recv != nil {
    					recvTParams = recv.TypeParams().list()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

        public static final List<String> ALLOW_ENVIRONMENT_VARIABLE_OVERWRITE = ImmutableList.of("--add-opens=java.base/java.util=ALL-UNNAMED");
    
        private final ToolchainConfiguration toolchainConfiguration = new DefaultToolchainConfiguration();
        private final File gradleUserHomeDir;
    
        private File baseDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

                    if (${clientJdkVersion.isCompatibleWith(JavaVersion.VERSION_16)} && ['2.14.1'].contains(project.findProperty("gradleVersion"))) {
                        jvmArgs = ["--add-opens", "java.base/java.lang=ALL-UNNAMED"]
                    }
                }
    
                java {
                    disableAutoTargetJvm()
                    toolchain {
                        languageVersion = JavaLanguageVersion.of(8)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

          i += 2;
        } else {
          // Unsupported character in the equation.
          return std::nullopt;
        }
      }
    
      *rhs_named_label_count = rhs_count;
      return labels;
    }
    
    // Generate new unnamed labels for the expression.
    // For example, if we have GenerateLabels(2, {'b', 'c', 'd'}) for "...xy"
    // We will have "dcxy" for the ellipsis expression since it's rank 4,
    // we will have dcbxy if it's rank 5.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_builder_test.go

    	}{
    		{
    			name:   "permissive",
    			config: "",
    			http: map[int]bool{
    				// Should not see HTTP inspector if we declare ports
    				80: true,
    				82: true,
    				// But should see for passthrough or unnamed ports
    				81:   false,
    				1000: false,
    			},
    			tls: map[int]bool{
    				// Permissive mode: inspector is set everywhere
    				80:   false,
    				82:   false,
    				81:   false,
    				1000: false,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top