Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,031 for asset0 (0.14 sec)

  1. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/conf/routes

    GET     /                           @controllers.Application.index
    
    GET     /shutdown                   @controllers.Application.shutdown
    
    # Map static resources from the /public folder to the /assets URL path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 313 bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            }
        }
    
        /**
         * Assert if a compilation problems looks like how we expect it to look like.
         * <p>
         * In addition, the method will update the {@link #possibleFileLocations} with the location found in the problem.
         * This could be used to assert that all expected files have been visited.
         *
         * @param problem the problem to assert
         * @param severity the expected severity of the problem
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                        });
    
      struct NamedAsset {
        llvm::StringRef name;
        AssetOp asset;
      };
      llvm::SmallVector<NamedAsset, 4> assets;
      for (auto asset : module.getOps<AssetOp>()) {
        assets.push_back({asset.getName(), asset});
      }
      llvm::stable_sort(assets, [](const NamedAsset& a, const NamedAsset& b) {
        return a.name < b.name;
      });
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/app/views/main.scala.html

    <!DOCTYPE html>
    <html>
        <head>
            <title>@title</title>
            <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
            <link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.png")">
            <script src="@routes.Assets.at("javascripts/hello.js")" type="text/javascript"></script>
        </head>
        <body>
    @content
        </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 440 bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/app/views/main.scala.html

    <!DOCTYPE html>
    
    <html>
        <head>
            <title>@title</title>
            <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
            <link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.png")">
            <script src="@routes.Assets.at("javascripts/hello.js")" type="text/javascript"></script>
        </head>
        <body>
            @content
        </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 450 bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/testdata/generate_saved_models.py

    
    class AssetModule(module.Module):
    
      def __init__(self):
        self.asset = asset.Asset(
            test.test_src_dir_path("cc/saved_model/testdata/test_asset.txt"))
    
      @def_function.function(input_signature=[])
      def read_file(self):
        return io_ops.read_file(self.asset)
    
    
    class StaticHashTableModule(module.Module):
      """A module with an Asset, StaticHashTable, and a lookup function."""
    
      def __init__(self):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 18:06:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/certs/certs_test.go

    	}
    
    	assert.ElementsMatch(t, certConfig.Organization, csr.Subject.Organization, "organizations not equal")
    
    	if csr.Subject.CommonName != certConfig.CommonName {
    		t.Errorf("expected common name %q, got %q", certConfig.CommonName, csr.Subject.CommonName)
    	}
    
    	assert.ElementsMatch(t, certConfig.AltNames.DNSNames, csr.DNSNames, "dns names not equal")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_asset_sinking_pass.cc

          auto asset = LookupBoundInputOfType<AssetOp>(
              func, argument.getArgNumber(), symbol_table);
          if (asset == nullptr) {
            continue;
          }
    
          // Create a const op for the asset if it doesn't already exist.
          auto it = const_ops.find(asset.getSymName());
          if (it == const_ops.end()) {
            // Asset filenames are relative to the SavedModel directory.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

        return RankedTensorType::get(
            {}, TF::ResourceType::get({type}, type.getContext()));
      }
    
      if (auto asset = llvm::dyn_cast<AssetOp>(op)) {
        return RankedTensorType::get({}, TF::StringType::get(asset.getContext()));
      }
    
      op->emitError() << "unknown symbol operation";
      return {};
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. pkg/monitoring/monitortest/test.go

    	}
    	key := metricKey{
    		name:  *metric.Name,
    		attrs: attribute.NewSet(kvs...),
    	}
    	return key
    }
    
    type Compare func(any) error
    
    func DoesNotExist(any) error {
    	// special case logic in the Assert
    	return nil
    }
    
    func Exactly(v float64) func(any) error {
    	return func(f any) error {
    		if v != toFloat(f) {
    			return fmt.Errorf("want %v, got %v", v, toFloat(f))
    		}
    		return nil
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top