Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for getters (1.93 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

            printer: PrettyPrinter,
            renderSymbolsFully: Boolean,
            vararg args: Any,
        ) {
            printer.append(property.name).append(": ")
            renderFunctionCall(property.getter, printer, renderSymbolsFully, args)
        }
    
        private fun KaSession.renderFunctionCall(
            function: KFunction<*>,
            printer: PrettyPrinter,
            renderSymbolsFully: Boolean,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. schema/relationship.go

    					return nil
    				}
    			}
    		}
    	}
    
    	var (
    		name     string
    		idx      = strings.Index(str, ",")
    		settings = ParseTagSetting(str, ",")
    	)
    
    	// optimize match english letters and midline
    	// The following code is basically called in for.
    	// In order to avoid the performance problems caused by repeated compilation of regular expressions,
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    In this case, the relative path of the input files can be used to identify them.
    
    Note that it is possible to override property annotations from the base class by overriding the getter of the base class and annotating that method.
    
    .Custom cacheable BundleTask
    ====
    include::sample[dir="snippets/buildCache/cacheable-bundle-task/kotlin",files="build.gradle.kts[tags=bundle-task]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

                import java.io.OutputStreamWriter;
    
                class Main {
                    public static void main(String[] args) throws Exception {
                        // Some lowercase greek letters
                        String content = "\u03b1\u03b2\u03b3";
                        OutputStreamWriter writer = new OutputStreamWriter(new FileOutputStream(new File("encoded.out")), "utf-8");
                        writer.write(content);
    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. tensorflow/compiler/jit/xla_device.cc

      // Create and set a new AcceleratorDeviceInfo, if necessary.
      //
      // TODO(b/78232898): This isn't thread-safe; there is a race between the call
      // to set_tensorflow_accelerator_device_info() with ops that call the getter
      // tensorflow_accelerator_device_info(). This isn't trivially fixed by adding
      // locking to those methods; see the bug for details. Our only saving grace at
      // the moment is that this race doesn't seem to occur in practice.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  6. doc/godebug.md

    Go 1.23 changed [`os.Readlink`](/pkg/os#Readlink) and [`filepath.EvalSymlinks`](/pkg/path/filepath#EvalSymlinks)
    to avoid trying to normalize volumes to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    For Go 1.23, it defaults to `winreadlinkvolume=1`.
    Previous versions default to `winreadlinkvolume=0`.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. pkg/test/echo/proto/echo.pb.go

    	}
    	return false
    }
    
    func (x *ForwardEchoRequest) GetFollowRedirects() bool {
    	if x != nil {
    		return x.FollowRedirects
    	}
    	return false
    }
    
    func (x *ForwardEchoRequest) GetCert() string {
    	if x != nil {
    		return x.Cert
    	}
    	return ""
    }
    
    func (x *ForwardEchoRequest) GetKey() string {
    	if x != nil {
    		return x.Key
    	}
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

            when:
            executer.withArgument("-Dprop=abc")
            run("thing")
    
            then:
            skipped(":thing")
        }
    
        def "can define task with abstract Property<#type> getter"() {
            given:
            buildFile << """
                class Param<T> {
                    T display
                    String toString() { display.toString() }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

      // {attribute_name, attribute_value} pair.
      llvm::SmallDenseMap<NamedAttribute, Operation*> attr_to_op_map;
      for (Operation* op : ops) {
        for (const NamedAttribute named_attr : op->getAttrs()) {
          attr_to_op_map.insert({named_attr, op});
        }
      }
    
      for (int idx : llvm::seq<int>(0, attributes.size())) {
        const NamedAttribute& attribute = attributes[idx];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

                            AttrValue* value) {
      TF_RETURN_IF_ERROR(ConvertAttribute(
          mlir::cast<mlir::FlatSymbolRefAttr>(attr.getName()), value));
      TF_RETURN_IF_ERROR(ConvertAttributes(attr.getAttrs().getValue(),
                                           /*attrs_to_ignore=*/{}, remove_ref_type,
                                           value->mutable_func()->mutable_attr()));
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top