Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 106 for keynote (0.27 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    // possible suffixes.
    //
    // For example:
    //
    //   - “01+10” and “+01+10” both denote the set of changes
    //     with IDs ending with the bits 01 or 10.
    //
    //   - “01+10-1001” denotes the set of changes with IDs
    //     ending with the bits 01 or 10, but excluding those ending in 1001.
    //
    //   - “-01-1000” and “y-01-1000 both denote the set of all changes
    //     with IDs not ending in 01 nor 1000.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    		return fmt.Sprintf("%s<%s>", base, arg1)
    	}
    	return fmt.Sprintf("%s<%s,%s>", base, arg1, arg2)
    }
    
    func (d *dwctxt) mkinternaltype(ctxt *Link, abbrev int, typename, keyname, valname string, f func(*dwarf.DWDie)) loader.Sym {
    	name := mkinternaltypename(typename, keyname, valname)
    	symname := dwarf.InfoPrefix + name
    	s := d.ldr.Lookup(symname, 0)
    	if s != 0 && d.ldr.SymType(s) == sym.SDWARFTYPE {
    		return s
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. 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)
  4. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    },a.fn.validateOnEvent=function(b,c){var d="FORM"===this[0].nodeName?this.find("*[data-validation-event]"):this;return d.each(function(){var d=a(this),e=d.valAttr("event");e&&d.unbind(e+".validation").bind(e+".validation",function(d){9!==(d||{}).keyCode&&a(this).validateInputOnBlur(b,c,!0,e)})}),this},a.fn.showHelpOnFocus=function(b){return b||(b="data-validation-help"),this.find("textarea,input").each(function(){var c=a(this),e="jquery_form_help_"+ ++d,f=c.attr(b);c.removeClass("has-help-text")...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top