Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for bland (0.23 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

            <!-- Parent Model                                                           -->
            <!-- ====================================================================== -->
    
            <field xdoc.separator="blank">
              <name>parent</name>
              <version>4.0.0+</version>
              <description>The location of the parent project, if one exists. Values from the parent
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    the body of any nested function.
    </p>
    
    
    <h3 id="Blank_identifier">Blank identifier</h3>
    
    <p>
    The <i>blank identifier</i> is represented by the underscore character <code>_</code>.
    It serves as an anonymous placeholder instead of a regular (non-blank)
    identifier and has special meaning in <a href="#Declarations_and_scope">declarations</a>,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // they must appear near the top of the file, preceded
    // only by blank lines and other comments. These rules mean that in Go
    // files a build constraint must appear before the package clause.
    //
    // To distinguish build constraints from package documentation,
    // a build constraint should be followed by a blank line.
    //
    // A build constraint comment is evaluated as an expression containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

      local project_hash
      if which md5 > /dev/null 2>&1; then
        project_hash=$(md5 -q -s "$PROJECT")
      else
        project_hash=$(echo -n "$PROJECT" | md5sum)
        project_hash=${project_hash%%[[:blank:]]*}
      fi
    
      # This requires 1 million projects before the probability of collision is 50%
      # that's probably good enough for now :P
      project_hash=${project_hash:0:10}
    
      set-preferred-region
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. src/net/http/server.go

    		// zero chunk to mark EOF
    		bw.WriteString("0\r\n")
    		if trailers := cw.res.finalTrailers(); trailers != nil {
    			trailers.Write(bw) // the writer handles noting errors
    		}
    		// final blank line after the trailers (whether
    		// present or not)
    		bw.WriteString("\r\n")
    	}
    }
    
    // A response represents the server side of an HTTP response.
    type response struct {
    	conn             *conn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. go.sum

    github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
    github.com/blang/semver v3.5.0+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk=
    github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM=
    github.com/blang/semver/v4 v4.0.0/go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/validation/validation_test.go

    					Port:      443,
    				},
    				URL: strPtr("example.com/k8s/webhook"),
    			},
    		},
    		}, true),
    		expectedError: `[0].clientConfig: Required value: exactly one of url or service is required`,
    	}, {
    		name: "blank URL",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name: "webhook.k8s.io",
    			ClientConfig: admissionregistration.WebhookClientConfig{
    				URL: strPtr(""),
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    	ch := globalNotificationSys.DriveSpeedTest(ctx, opts)
    
    	enc := json.NewEncoder(w)
    	for {
    		select {
    		case <-ctx.Done():
    			return
    		case <-keepAliveTicker.C:
    			// Write a blank entry to prevent client from disconnecting
    			if err := enc.Encode(madmin.DriveSpeedTestResult{}); err != nil {
    				return
    			}
    			w.(http.Flusher).Flush()
    		case result, ok := <-ch:
    			if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    // https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02,
    // except that it does not support parameter or arithmetic expansion or command
    // substitution and hard-codes the <blank> delimiters instead of reading them
    // from LC_LOCALE.
    func splitPkgConfigOutput(out []byte) ([]string, error) {
    	if len(out) == 0 {
    		return nil, nil
    	}
    	var flags []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    									// TODO: Change this to &tc.CPUTarget and the expected ScaleLimited
    									//       condition to False. This test incorrectly leaves the v1
    									//       HPA field TargetCPUUtilizization field blank and the
    									//       controller defaults to a target of 80. So the test relies
    									//       on downscale stabilization to prevent a scale change.
    									AverageUtilization: &eighty,
    								},
    							},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top