Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for tmpused (0.37 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #           manner to JSP or MASON or PHP: anything within < % ... % > is a
    #           code block, anything else is sent as output, subject to the
    #           flow imposed by any code segments.
    #
    #        3. The "output" is a POSIX shell script, which has its own ideas about
    #           escaping with backslashes, so to get «\» you need to write «\\\\»
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Floats.java

          return "Floats.lexicographicalComparator()";
        }
      }
    
      /**
       * Sorts the elements of {@code array} in descending order.
       *
       * <p>Note that this method uses the total order imposed by {@link Float#compare}, which treats
       * all NaN values as equal and 0.0 as greater than -0.0.
       *
       * @since 23.1
       */
      public static void sortDescending(float[] array) {
        checkNotNull(array);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/Floats.java

          return "Floats.lexicographicalComparator()";
        }
      }
    
      /**
       * Sorts the elements of {@code array} in descending order.
       *
       * <p>Note that this method uses the total order imposed by {@link Float#compare}, which treats
       * all NaN values as equal and 0.0 as greater than -0.0.
       *
       * @since 23.1
       */
      public static void sortDescending(float[] array) {
        checkNotNull(array);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top