Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 295 for fwmark (0.13 sec)

  1. src/runtime/mstats.go

    	// they don't accurately compute on-CPU time (so some of the time
    	// could be spent scheduled away by the OS).
    
    	GCAssistTime    int64 // GC assists
    	GCDedicatedTime int64 // GC dedicated mark workers + pauses
    	GCIdleTime      int64 // GC idle mark workers
    	GCPauseTime     int64 // GC pauses (all GOMAXPROCS, even if just 1 is running)
    	GCTotalTime     int64
    
    	ScavengeAssistTime int64 // background scavenger
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

      }];
      let constructor = "tensorflow::tf2xla::internal::CreateXlaClusterFormationPass()";
      let dependentDialects = ["mlir::tf_device::TensorFlowDeviceDialect"];
    }
    
    def MarkOpsForOutsideCompilationPass : Pass<"tf-mark-ops-for-outside-compilation", "ModuleOp"> {
      let summary = "Marks ops in device cluster for outside compilation if they are unsupported on device.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

                    public void run() {
                        registryUpdater.onCancel();
                    }
                };
    
                // Start the pipeline in reverse order:
                // 1. mark daemon as running
                // 2. start handling incoming commands
                // 3. start accepting incoming connections
                // 4. advertise presence in registry
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/ResponseBody.kt

       */
      @Throws(IOException::class)
      fun byteString() = commonByteString()
    
      /**
       * Returns the response as a character stream.
       *
       * If the response starts with a
       * [Byte Order Mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark), it is consumed and
       * used to determine the charset of the response bytes.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    				return a.(model.ServiceInfo).Source == kind.ServiceEntry
    			}))
    		}
    		services := krt.Fetch(ctx, WorkloadServices, fo...)
    		a.networkUpdateTrigger.MarkDependant(ctx) // Mark we depend on out of band a.Network
    		network := a.Network(wle.Spec.Address, wle.Labels).String()
    		if wle.Spec.Network != "" {
    			network = wle.Spec.Network
    		}
    
    		// enforce traversing waypoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

          return true;
        parent = parent->getParentOp();
      }
      return false;
    }
    
    // If any tf.variants are inputs/outputs to the another outside compiled
    // Operation, `op`, mark  them for outside compilation unless they are already
    // marks with outside compilation attribute.
    void MarkVariantInputsOutputs(mlir::tf_device::ClusterOp tpu_cluster) {
      std::queue<Operation*> outside_compiled_ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/inline.go

    	if i+1 >= len(s) || s[i+1] != '-' {
    		return nil, 0, 0, false
    	}
    
    	n := 2
    	for i+n < len(s) && s[i+n] == '-' {
    		n++
    	}
    
    	// Mimic cmark-gfm. Can't make this stuff up.
    	em, en := 0, 0
    	switch {
    	case n%3 == 0:
    		em = n / 3
    	case n%2 == 0:
    		en = n / 2
    	case n%3 == 2:
    		em = (n - 2) / 3
    		en = 1
    	case n%3 == 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

        }
    
        public PluginDescriptor build(ReaderSupplier readerSupplier, String source) throws PlexusConfigurationException {
            try (BufferedReader br = new BufferedReader(readerSupplier.open(), BUFFER_SIZE)) {
                br.mark(BUFFER_SIZE);
                XMLStreamReader xsr = WstxInputFactory.newFactory().createXMLStreamReader(br);
                xsr.nextTag();
                String nsUri = xsr.getNamespaceURI();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpComponent.java

     *       //non-existing source dirs won't be added to the component file.
     *       sourceDirs += file('someExtraFolder')
     *
     *       // dependencies to mark as deployable with lib folder deploy path
     *       libConfigurations += [ configurations.someInterestingConfiguration ]
     *
     *       // dependencies to mark as deployable with root folder deploy path
     *       rootConfigurations += [ configurations.someInterestingConfiguration ]
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractEntity.java

            return false;
        }
    
        // ===================================================================================
        //                                                                     Birthplace Mark
        //                                                                     ===============
        @Override
        public void markAsSelect() {
            __createdBySelect = true;
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top