Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for ContainerT (0.39 sec)

  1. .github/workflows/tests.yml

    name: tests
    
    on:
      push:
        branches-ignore:
          - 'gh-pages'
      pull_request:
        branches-ignore:
          - 'gh-pages'
    
    permissions:
      contents: read
    
    jobs:
      # Label of the container job
      sqlite:
        strategy:
          matrix:
            go: ['1.22', '1.21', '1.20']
            platform: [ubuntu-latest] # can not run in windows OS
        runs-on: ${{ matrix.platform }}
    
        steps:
        - name: Set up Go 1.x
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_registration.cc

    // to satisfy the API of MLIR pass registration. In order to do this, the
    // command-line option header is pulled in.
    
    #include <memory>
    #include <utility>
    
    #include "absl/container/flat_hash_set.h"
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/Tools/mlir-translate/Translation.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/dialect_registration.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. docs/en/docs/fastapi-cli.md

    In most cases you would (and should) have a "termination proxy" handling HTTPS for you on top, this will depend on how you deploy your application, your provider might do this for you, or you might need to set it up yourself.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.cc

    #include "tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.h"
    
    #include <cstdint>
    #include <memory>
    #include <string>
    #include <utility>
    
    #include "absl/container/flat_hash_set.h"
    #include "absl/log/log.h"
    #include "absl/strings/string_view.h"
    #include "flatbuffers/buffer.h"  // from @flatbuffers
    #include "flatbuffers/flatbuffer_builder.h"  // from @flatbuffers
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. samples/addons/kiali.yaml

            prometheus.io/scrape: "true"
            prometheus.io/port: "9090"
            kiali.io/dashboards: go,kiali
        spec:
          serviceAccountName: kiali
          containers:
          - image: "quay.io/kiali/kiali:v1.85"
            imagePullPolicy: IfNotPresent
            name: kiali
            command:
            - "/opt/kiali/kiali"
            - "-config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. samples/addons/prometheus.yaml

            app.kubernetes.io/part-of: prometheus
            
            sidecar.istio.io/inject: "false"
        spec:
          enableServiceLinks: true
          serviceAccountName: prometheus
          containers:
            - name: prometheus-server-configmap-reload
              image: "ghcr.io/prometheus-operator/prometheus-config-reloader:v0.73.2"
              imagePullPolicy: "IfNotPresent"
              args:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. maven-core/pom.xml

                  <!-- was only a workaround for Plexus Container, hopefully never used by anyone else -->
                  <exclude>org.apache.maven.plugin.DefaultBuildPluginManager#setMojoExecutionListeners(java.util.List)</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. pilot/pkg/features/pilot.go

    	EnableNodeUntaintControllers = env.Register(
    		"PILOT_ENABLE_NODE_UNTAINT_CONTROLLERS",
    		false,
    		"If enabled, controller that untaints nodes with cni pods ready will run. This should be enabled if you disabled ambient init containers.").Get()
    
    	// EnableUnsafeAssertions enables runtime checks to test assertions in our code. This should never be enabled in
    	// production; when assertions fail Istio will panic.
    	EnableUnsafeAssertions = env.Register(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

    #include "tensorflow/compiler/mlir/lite/python/converter_python_api.h"
    
    #include <Python.h>
    
    #include <fstream>
    #include <memory>
    #include <optional>
    #include <string>
    #include <vector>
    
    #include "absl/container/flat_hash_set.h"
    #include "absl/status/status.h"
    #include "absl/strings/string_view.h"
    #include "flatbuffers/flatbuffer_builder.h"  // from @flatbuffers
    #include "tensorflow/c/kernels.h"
    #include "tensorflow/c/tf_status.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/analyzers_test.go

    			"testdata/pod-sec-uid.yaml",
    		},
    		analyzer: &deployment.ApplicationUIDAnalyzer{},
    		expected: []message{
    			{msg.InvalidApplicationUID, "Pod pod-sec-uid"},
    		},
    	},
    	{
    		name: "Application Container SecurityContext with UID 1337",
    		inputFiles: []string{
    			"testdata/pod-con-sec-uid.yaml",
    		},
    		analyzer: &deployment.ApplicationUIDAnalyzer{},
    		expected: []message{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top