Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,960 for usedBy (0.16 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

                fsObj.free = f.getFreeSpace();
                fsObj.total = f.getTotalSpace();
                fsObj.usable = f.getUsableSpace();
                fsObj.used = fsObj.total - fsObj.usable;
                fsObj.percent = (short) (100 * fsObj.used / fsObj.total);
                return fsObj;
            }).toArray(n -> new FsObj[n]);
        }
    
        private JvmObj getJvmObj() {
            final JvmObj jvmObj = new JvmObj();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    const (
    	// FieldValueRequired is used to report required values that are not
    	// provided (e.g. empty strings, null values, or empty arrays).
    	FieldValueRequired FieldValueErrorReason = "FieldValueRequired"
    	// FieldValueDuplicate is used to report collisions of values that must be
    	// unique (e.g. unique IDs).
    	FieldValueDuplicate FieldValueErrorReason = "FieldValueDuplicate"
    	// FieldValueInvalid is used to report malformed values (e.g. failed regex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/CopySpec.java

        /**
         * Gets the charset used to read and write files when filtering.
         * By default, the JVM default charset is used.
         *
         * @return the charset used to read and write files when filtering
         * @since 2.14
         */
        String getFilteringCharset();
    
        /**
         * Specifies the charset used to read and write files when filtering.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  4. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner_test.go

    				core.NewGetAction(schema.GroupVersionResource{Version: "v1", Resource: "configmaps"}, metav1.NamespaceSystem, legacytokentracking.ConfigMapName),
    			},
    		},
    		"auto-generated secret has 'last-used' label, the time period since last-used is larger than CleanUpPeriod, secret has not been marked as invalid": {
    			ExistingSecret:           configuredServiceAccountTokenSecret("2022-12-27", "", "2022-12-27", "default", "12345", ""),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    const (
    	// FieldValueRequired is used to report required values that are not
    	// provided (e.g. empty strings, null values, or empty arrays).
    	FieldValueRequired FieldValueErrorReason = "FieldValueRequired"
    	// FieldValueDuplicate is used to report collisions of values that must be
    	// unique (e.g. unique IDs).
    	FieldValueDuplicate FieldValueErrorReason = "FieldValueDuplicate"
    	// FieldValueInvalid is used to report malformed values (e.g. failed regex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  6. pkg/registry/core/service/ipallocator/bitmap_test.go

    			}
    
    			if r.IPFamily() != tc.family {
    				t.Errorf("[%s] wrong IP family: expected %v, got %v", tc.name, tc.family, r.IPFamily())
    			}
    
    			if f := r.Used(); f != 0 {
    				t.Errorf("[%s]: wrong used: expected %d, got %d", tc.name, 0, f)
    			}
    			found := sets.NewString()
    			count := 0
    			for r.Free() > 0 {
    				ip, err := r.AllocateNext()
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    // name representation of resources. In case of shortcut conflicts(with CRD shortcuts) singular name should always map to this resource.
    type SingularNameProvider interface {
    	GetSingularName() string
    }
    
    // GroupVersionKindProvider is used to specify a particular GroupVersionKind to discovery.  This is used for polymorphic endpoints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

        // has a DumpTensor, and it is used to save the entire value of outputs from
        // both the quantized and unquantized layer.
        DEBUGGER_TYPE_FLOAT_PER_LAYER = 3;
      }
    
      DebuggerType debugger_type = 1;
    
      // Path to save unquantized model with dump tensor ops attached.
      // Used when debugger_type is WHOLE_MODEL.
      string unquantized_dump_model_path = 2;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/Kerb5Authenticator.java

            to.forceFallback = from.forceFallback;
        }
    
    
        /**
         * Set the user name which is used to setup <code>GSSContext</code>. If null
         * is set, the default user will be used which is retrieved from the first
         * TGT found in <code>Subject</code> .
         *
         * @param name
         *            the user name used to setup <code>GSSContext</code>
         */
        public void setUser ( String name ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    const (
    	// FieldValueRequired is used to report required values that are not
    	// provided (e.g. empty strings, null values, or empty arrays).
    	FieldValueRequired FieldValueErrorReason = "FieldValueRequired"
    	// FieldValueDuplicate is used to report collisions of values that must be
    	// unique (e.g. unique IDs).
    	FieldValueDuplicate FieldValueErrorReason = "FieldValueDuplicate"
    	// FieldValueInvalid is used to report malformed values (e.g. failed regex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
Back to top