Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of about 10,000 for internally (0.21 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    include::sample[dir="snippets/tutorial/logging/groovy",files="build.gradle[tags=use-slf4j]"]
    ====
    
    [[sec:external_tools]]
    == Logging from external tools and libraries
    
    Internally, Gradle uses Ant and Ivy.
    Both have their own logging system.
    Gradle redirects their logging output into the Gradle logging system.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    // NewCodecFactory provides methods for retrieving serializers for the supported wire formats
    // and conversion wrappers to define preferred internal and external versions. In the future,
    // as the internal version is used less, callers may instead use a defaulting serializer and
    // only convert objects which are shared internally (Status, common API machinery).
    //
    // Mutators can be passed to change the CodecFactoryOptions before construction of the factory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. fastapi/openapi/utils.py

    def generate_operation_id(
        *, route: routing.APIRoute, method: str
    ) -> str:  # pragma: nocover
        warnings.warn(
            "fastapi.openapi.utils.generate_operation_id() was deprecated, "
            "it is not used internally, and will be removed soon",
            DeprecationWarning,
            stacklevel=2,
        )
        if route.operation_id:
            return route.operation_id
        path: str = route.path_format
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/intervals.go

    //	  var pairVisitor pv
    //	  cur := pv.init(i1, i2);
    //	  for !cur.done() {
    //	     fmt.Printf("interval %s from i%d", cur.i.String(), cur.pairIndex+1)
    //	     cur = pv.nxt()
    //	  }
    //	}
    //
    // Used internally for Intervals operations, not expected to be exported.
    type pairVisitor struct {
    	cur    intWithIdx
    	i1pos  int
    	i2pos  int
    	i1, i2 Intervals
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/internal/pkgbits/encoder.go

    func (w *Encoder) Code(c Code) {
    	w.Sync(c.Marker())
    	w.Len(c.Value())
    }
    
    // String encodes and writes a string value into the element
    // bitstream.
    //
    // Internally, strings are deduplicated by adding them to the strings
    // section (if not already present), and then writing a relocation
    // into the element bitstream.
    func (w *Encoder) String(s string) {
    	w.StringRef(w.p.StringIdx(s))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 23:26:58 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation.go

    			conditionTypeToFirstIndex[condition.Type] = i
    		}
    
    		allErrs = append(allErrs, ValidateCondition(condition, fldPath.Index(i))...)
    	}
    
    	return allErrs
    }
    
    // validConditionStatuses is used internally to check validity and provide a good message
    var validConditionStatuses = sets.NewString(string(metav1.ConditionTrue), string(metav1.ConditionFalse), string(metav1.ConditionUnknown))
    
    const (
    	maxReasonLen  = 1 * 1024
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/generate-clients.md

    > openapi-ts --input http://localhost:8000/openapi.json --output ./src/client --client axios
    ```
    
    </div>
    
    That command will generate code in `./src/client` and will use `axios` (the frontend HTTP library) internally.
    
    ### Try Out the Client Code
    
    Now you can import and use the client code, it could look like this, notice that you get autocompletion for the methods:
    
    <img src="/img/tutorial/generate-clients/image02.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MapMaker.java

        return (initialCapacity == UNSET_INT) ? DEFAULT_INITIAL_CAPACITY : initialCapacity;
      }
    
      /**
       * Guides the allowed concurrency among update operations. Used as a hint for internal sizing. The
       * table is internally partitioned to try to permit the indicated number of concurrent updates
       * without contention. Because assignment of entries to these partitions is not necessarily
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMaker.java

        return (initialCapacity == UNSET_INT) ? DEFAULT_INITIAL_CAPACITY : initialCapacity;
      }
    
      /**
       * Guides the allowed concurrency among update operations. Used as a hint for internal sizing. The
       * table is internally partitioned to try to permit the indicated number of concurrent updates
       * without contention. Because assignment of entries to these partitions is not necessarily
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. src/crypto/elliptic/params.go

    	BitSize int      // the size of the underlying field
    	Name    string   // the canonical name of the curve
    }
    
    func (curve *CurveParams) Params() *CurveParams {
    	return curve
    }
    
    // CurveParams operates, internally, on Jacobian coordinates. For a given
    // (x, y) position on the curve, the Jacobian coordinates are (x1, y1, z1)
    // where x = x1/z1² and y = y1/z1³. The greatest speedups come when the whole
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top