Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 314 for providedBy (0.16 sec)

  1. src/net/smtp/smtp.go

    		return err
    	}
    	if err := c.hello(); err != nil {
    		return err
    	}
    	_, _, err := c.cmd(250, "VRFY %s", addr)
    	return err
    }
    
    // Auth authenticates a client using the provided authentication mechanism.
    // A failed authentication closes the connection.
    // Only servers that advertise the AUTH extension support this function.
    func (c *Client) Auth(a Auth) error {
    	if err := c.hello(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.yaml

            type: "[]string"
          - name: namespace
            type: string
    
      - name: "InvalidGatewayCredential"
        code: IST0161
        level: Error
        description: "The credential provided for the Gateway resource is invalid"
        template: "The credential referenced by the Gateway %s in namespace %s is invalid, which can cause the traffic not to work as expected."
        args:
          - name: gatewayName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

        representative_dataset: rd.RepresentativeDatasetOrMapping,
        signature_keys: Collection[str],
    ) -> None:
      """Validates the representative dataset, based on the signature keys.
    
      Representative dataset can be provided in two different forms: a single
      instance of `RepresentativeDataset` or a map of signature key to the
      corresponding `RepresentativeDataset`. These have a relationship with
      `signature_keys`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    }
    
    // AsScale returns the current value, rounded up to the provided scale, and returns
    // false if the scale resulted in a loss of precision.
    func (q *Quantity) AsScale(scale Scale) (CanonicalValue, bool) {
    	if q.d.Dec != nil {
    		return q.d.AsScale(scale)
    	}
    	return q.i.AsScale(scale)
    }
    
    // RoundUp updates the quantity to the provided scale, ensuring that the value is at
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/check_test.go

    // TestManual is for manual testing of a package - either provided
    // as a list of filenames belonging to the package, or a directory
    // name containing the package files - after the test arguments
    // (and a separating "--"). For instance, to test the package made
    // of the files foo.go and bar.go, use:
    //
    //	go test -run Manual -- foo.go bar.go
    //
    // If no source arguments are provided, the file testdata/manual.go
    // is used instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/go/types/check_test.go

    // TestManual is for manual testing of a package - either provided
    // as a list of filenames belonging to the package, or a directory
    // name containing the package files - after the test arguments
    // (and a separating "--"). For instance, to test the package made
    // of the files foo.go and bar.go, use:
    //
    //	go test -run Manual -- foo.go bar.go
    //
    // If no source arguments are provided, the file testdata/manual.go
    // is used instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    			return
    		}
    
    		namespace, name, err := scope.Namer.Name(req)
    		if err != nil {
    			scope.err(err, w, req)
    			return
    		}
    
    		// enforce a timeout of at most requestTimeoutUpperBound (34s) or less if the user-provided
    		// timeout inside the parent context is lower than requestTimeoutUpperBound.
    		ctx, cancel := context.WithTimeout(ctx, requestTimeoutUpperBound)
    		defer cancel()
    
    		ctx = request.WithNamespace(ctx, namespace)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. maven-model-builder/pom.xml

        </dependency>
        <dependency>
          <groupId>javax.inject</groupId>
          <artifactId>javax.inject</artifactId>
          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>org.eclipse.sisu</groupId>
          <artifactId>org.eclipse.sisu.inject</artifactId>
          <scope>provided</scope>
        </dependency>
    
        <!-- Testing -->
        <dependency>
          <groupId>org.junit.jupiter</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/net/conf.go

    	// Issue #10714.
    	case "android":
    		return true
    
    	default:
    		return false
    	}
    }
    
    // mustUseGoResolver reports whether a DNS lookup of any sort is
    // required to use the go resolver. The provided Resolver is optional.
    // This will report true if the cgo resolver is not available.
    func (c *conf) mustUseGoResolver(r *Resolver) bool {
    	if !cgoAvailable {
    		return true
    	}
    
    	if runtime.GOOS == "plan9" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. cmd/common-main.go

    	if dir == "" {
    		dir = getDefaultDir()
    	}
    
    	if dir == "" {
    		if !dirSet {
    			return nil, fmt.Errorf("missing option must be provided")
    		}
    		return nil, fmt.Errorf("provided option cannot be empty")
    	}
    
    	// Disallow relative paths, figure out absolute paths.
    	dirAbs, err := filepath.Abs(dir)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top