Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for keynote (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			Current:  `{}`,
    			Modified: `{"complex_nullable":[{"inner_one":{"key_one":"foo","key_two":null}}]}`,
    
    			ExpectedTwoWay:         `{"complex_nullable":[{"inner_one":{"key_one":"foo","key_two":null}}]}`,
    			ExpectedTwoWayResult:   `{"complex_nullable":[{"inner_one":{"key_one":"foo"}}]}`,
    			ExpectedThreeWay:       `{"complex_nullable":[{"inner_one":{"key_one":"foo","key_two":null}}]}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

            if (artifact == null) {
                return null;
            }
    
            ArtifactHandler handler = newHandler(artifact);
    
            /*
             * NOTE: From Artifact.hasClassifier(), an empty string and a null both denote "no classifier". However, some
             * plugins only check for null, so be sure to nullify an empty classifier.
             */
            org.apache.maven.artifact.Artifact result = new org.apache.maven.artifact.DefaultArtifact(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. cmd/bucket-handlers.go

    		break
    	}
    
    	if keyName, ok := formValues["Key"]; !ok {
    		apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    		apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, errors.New("The name of the uploaded key is missing"))
    		writeErrorResponse(ctx, w, apiErr, r.URL)
    		return
    	} else if fileName == "" && len(keyName) >= 1 {
    		// if we can't get fileName. We use keyName[0] to fileName
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  4. cmd/metacache-server-pool.go

    	}
    
    	// For delimiter and prefix as '/' we do not list anything at all
    	// along // with the prefix. On a flat namespace with 'prefix'
    	// as '/' we don't have any entries, since all the keys are
    	// of form 'keyName/...'
    	if strings.HasPrefix(o.Prefix, SlashSeparator) {
    		return entries, io.EOF
    	}
    
    	// If delimiter is slashSeparator we must return directories of
    	// the non-recursive scan unless explicitly requested.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   subset of both PCRE and POSIX extended regex, so it's easy to
    //   learn wherever you come from.  In the following: 'A' denotes a
    //   literal character, period (.), or a single \\ escape sequence;
    //   'x' and 'y' denote regular expressions; 'm' and 'n' are for
    //   natural numbers.
    //
    //     c     matches any literal character c
    //     \\d   matches any decimal digit
    //     \\D   matches any character that's not a decimal digit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. src/go/types/builtins_test.go

    		case *ast.Ident:
    			obj := uses[p]
    			if obj == nil {
    				t.Errorf("%s: no object found for %s", src0, p.Name)
    				return
    			}
    			bin, _ := obj.(*Builtin)
    			if bin == nil {
    				t.Errorf("%s: %s does not denote a built-in", src0, p.Name)
    				return
    			}
    			if bin.Name() != name {
    				t.Errorf("%s: got built-in %s; want %s", src0, bin.Name(), name)
    				return
    			}
    			return // we're done
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-ingress/values.yaml

          # There are currently two types of anti-affinity:
          #    "requiredDuringSchedulingIgnoredDuringExecution"
          #    "preferredDuringSchedulingIgnoredDuringExecution"
          # which denote "hard" vs. "soft" requirements, you can define your values
          # in "podAntiAffinityLabelSelector" and "podAntiAffinityTermLabelSelector"
          # correspondingly.
          # For example:
          # podAntiAffinityLabelSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   subset of both PCRE and POSIX extended regex, so it's easy to
    //   learn wherever you come from.  In the following: 'A' denotes a
    //   literal character, period (.), or a single \\ escape sequence;
    //   'x' and 'y' denote regular expressions; 'm' and 'n' are for
    //   natural numbers.
    //
    //     c     matches any literal character c
    //     \\d   matches any decimal digit
    //     \\D   matches any character that's not a decimal digit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/builtins_test.go

    			obj := uses[p]
    			if obj == nil {
    				t.Errorf("%s: no object found for %s", src0, p.Value)
    				return
    			}
    			bin, _ := obj.(*Builtin)
    			if bin == nil {
    				t.Errorf("%s: %s does not denote a built-in", src0, p.Value)
    				return
    			}
    			if bin.Name() != name {
    				t.Errorf("%s: got built-in %s; want %s", src0, bin.Name(), name)
    				return
    			}
    			return // we're done
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 18:06:31 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-egress/values.yaml

          # There are currently two types of anti-affinity:
          #    "requiredDuringSchedulingIgnoredDuringExecution"
          #    "preferredDuringSchedulingIgnoredDuringExecution"
          # which denote "hard" vs. "soft" requirements, you can define your values
          # in "podAntiAffinityLabelSelector" and "podAntiAffinityTermLabelSelector"
          # correspondingly.
          # For example:
          # podAntiAffinityLabelSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top