Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for tmpused (0.1 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    				// don't clobber inputs.
    				s.clobberRegs(regspec.clobbers &^ s.tmpused &^ s.nospill)
    			}
    			s.freeRegs(regspec.clobbers)
    			s.tmpused |= regspec.clobbers
    
    			// Pick registers for outputs.
    			{
    				outRegs := noRegisters // TODO if this is costly, hoist and clear incrementally below.
    				maxOutIdx := -1
    				var used regMask
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    		return nil, fmt.Errorf("error while parsing file: %w", err)
    	}
    
    	transformers, kmsHealthChecks, kmsUsed, err := getTransformerOverridesAndKMSPluginHealthzCheckers(ctx, config, apiServerID)
    	if err != nil {
    		return nil, fmt.Errorf("error while building transformers: %w", err)
    	}
    
    	if reload || (kmsUsed.v2Used && !kmsUsed.v1Used) {
    		kmsHealthChecks = []healthz.HealthChecker{kmsHealthChecker(kmsHealthChecks)}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DependencyResolutionException.java

            for (Exception exception : result.getCollectionErrors()) {
                msg.append(exception.getMessage()).append(System.lineSeparator());
                if (exception.getCause() != null) {
                    msg.append("\tCaused by: ")
                            .append(exception.getCause().getMessage())
                            .append(System.lineSeparator());
                }
            }
    
            return msg.toString();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			cancel() // cancel this upfront so the kms v2 checks do not block
    
    			_, _, kmsUsed, err := getTransformerOverridesAndKMSPluginHealthzCheckers(ctx, &tt.config, "")
    			if err == nil {
    				if kmsUsed == nil || kmsUsed.v2Used != tt.wantV2Used {
    					t.Fatalf("unexpected kmsUsed value, expected: %v, got: %v", tt.wantV2Used, kmsUsed)
    				}
    
    			}
    			if !strings.Contains(errString(err), tt.expectedErr) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    // which C++ doesn't support directly.
    template <GTEST_TEMPLATE_ Tmpl>
    struct TemplateSel {
      template <typename T>
      struct Bind {
        typedef Tmpl<T> type;
      };
    };
    
    # define GTEST_BIND_(TmplSel, T) \
      TmplSel::template Bind<T>::type
    
    // A unique struct template used as the default value for the
    // arguments of class template Templates.  This allows us to simulate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/os/path_windows.go

    	}
    	if dir == "" {
    		dir = "."
    	}
    	return vol + dir
    }
    
    // fixLongPath returns the extended-length (\\?\-prefixed) form of
    // path when needed, in order to avoid the default 260 character file
    // path limit imposed by Windows. If the path is short enough or already
    // has the extended-length prefix, fixLongPath returns path unmodified.
    // If the path is relative and joining it with the current working
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    // which C++ doesn't support directly.
    template <GTEST_TEMPLATE_ Tmpl>
    struct TemplateSel {
      template <typename T>
      struct Bind {
        typedef Tmpl<T> type;
      };
    };
    
    # define GTEST_BIND_(TmplSel, T) \
      TmplSel::template Bind<T>::type
    
    // A unique struct template used as the default value for the
    // arguments of class template Templates.  This allows us to simulate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/launch_to_device_attribute.cc

      });
    
      if (result.wasInterrupted()) return signalPassFailure();
    
      if (!legacy_graph_export_) {
        // Now, split the island into an island per op since we don't want to
        // violate the invariant imposed by the GraphExport pipeline that every
        // IslandOp perfectly wraps a single op.
        auto control_type =
            mlir::tf_executor::ControlType::get(tf_dialect->getContext());
        getOperation().walk(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

    // Each matched pattern are rewritten by its quantized alternatives.
    //
    // Quantization method is determined by the `_quantization_method` attributes
    // attached to each quantizable units.
    //
    // Template constraints are imposed as follows:
    //
    // * `QuantizeOpT` should have only one operand.
    // * `DequantizeOpT` should have only one result.
    template <typename ConcreteT, typename QuantizeOpT, typename DequantizeOpT,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. internal/lock/lock_windows.go

    	}
    	return lockedOpenFile(path, flag, perm, lockType)
    }
    
    // fixLongPath returns the extended-length (\\?\-prefixed) form of
    // path when needed, in order to avoid the default 260 character file
    // path limit imposed by Windows. If path is not easily converted to
    // the extended-length form (for example, if path is a relative path
    // or contains .. elements), or is short enough, fixLongPath returns
    // path unmodified.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top