Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for Versions (0.14 sec)

  1. pkg/apis/admissionregistration/validation/validation_test.go

    			ClientConfig: validClientConfig,
    			SideEffects:  &unknownSideEffect,
    		},
    		}, true),
    		expectedError: ``,
    	}, {
    		name: "should pass on invalid AdmissionReviewVersion with invalid previous versions",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:                    "webhook.k8s.io",
    			ClientConfig:            validClientConfig,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <field>
              <name>version</name>
              <version>4.0.0+</version>
              <required>true</required>
              <description>The current version of the artifact produced by this project.</description>
              <type>String</type>
            </field>
            <field>
              <name>packaging</name>
              <version>4.0.0+</version>
              <description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    linguist-generated=true *_pb2.py linguist-generated=true manifests/charts/gateway/Chart.yaml apiVersion: v2 name: gateway description: Helm chart for deploying Istio gateways type: application # This version is never actually shipped. istio/release-builder will replace it at build-time # with the appropriate version version: 1.0.0 appVersion: 1.0.0 sources: - https://github.com/istio/istio icon: https://istio.io/latest/favicons/android-192x192.png keywords: - istio - gateways manifests/charts/gateway/README.md...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            // TODO - these should not be required for unique versions
            m2.pom.expectHead()
            m2.artifact.expectHead()
    
            succeeds ":app:resolve"
    
            then:
            output.count("files: [changing-1.2.jar.txt, snapshot-1.2-SNAPSHOT.jar.txt]") == 1
    
            output.count("Transformed") == 0
    
            when:
            // new snapshot version
            server.resetExpectations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          attrs.push_back(b.getNamedAttr(
              "tf.entry_function",
              b.getDictionaryAttr({inputs, outputs, control_outputs})));
        }
      }
    
      // Record version info.
      PopulateTfVersions(module.get(), graph.versions());
    
      const llvm::StringRef& graph_func_name =
          specs.graph_func_name.empty() ? kImportModelDefaultGraphFuncName
                                        : specs.graph_func_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)
  6. cmd/bucket-replication.go

    	default:
    		return brs, fmt.Errorf("resyncMeta: unknown version: %d", binary.LittleEndian.Uint16(data[2:4]))
    	}
    	// OK, parse data.
    	if _, err = brs.UnmarshalMsg(data[4:]); err != nil {
    		return brs, err
    	}
    
    	switch brs.Version {
    	case resyncMetaVersionV1:
    	default:
    		return brs, fmt.Errorf("unexpected resync meta version: %d", brs.Version)
    	}
    	return brs, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    		version := mi.Version
    		if version == "" {
    			version = "(devel)"
    		}
    		dm := &debug.Module{
    			Path:    mi.Path,
    			Version: version,
    		}
    		if mi.Replace != nil {
    			dm.Replace = debugModFromModinfo(mi.Replace)
    		} else if mi.Version != "" && cfg.BuildMod != "vendor" {
    			dm.Sum = modfetch.Sum(ctx, module.Version{Path: mi.Path, Version: mi.Version})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. samples/addons/grafana.yaml

      pilot-dashboard.json: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{bucket}}",
              "refId": "A"
            }
          ],
          "title": "Versions",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
            "defaults": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        // All futures are now complete; outstanding inputs are cancelled
        assertTrue(future3.isCancelled());
        assertTrue(future3.wasInterrupted());
      }
    
      @AndroidIncompatible // runs out of memory under some versions of the emulator
      public void testCancellingAllDelegatesIsNotQuadratic() throws Exception {
        ImmutableList.Builder<SettableFuture<Long>> builder = ImmutableList.builder();
        for (int i = 0; i < 500_000; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top