Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 308 for Accessible (0.22 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				// schema, but they would be accessible even if they were not
    				"self.embedded.kind == 'Pod'":                          4,
    				"self.embedded.apiVersion == 'v1'":                     4,
    				"self.embedded.metadata.name == 'foo'":                 5,
    				"self.embedded.metadata.generateName == 'pickItForMe'": 6,
    				// the specified embedded fields are accessible
    				"self.embedded.spec.field1 == 'a'": 5,
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedSpecInterceptor.groovy

        }
    
        private static List<ResettableExpectations> allResettableExpectationsOf(instance) {
            allInstanceFieldsOf(instance).findResults { field ->
                try {
                    def fieldValue = field.tap { accessible = true }.get(instance)
                    fieldValue instanceof ResettableExpectations ? fieldValue : null
                } catch (Exception ignored) {
                    null
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:10:05 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    - Build cache and Develocity credentials
    - Plugin Portal publishing credentials
    
    It's important to avoid using the `DEBUG` log level when running on public Continuous Integration (CI) services.
    Build logs on these services are accessible to the public and can expose sensitive information.
    Even on private CI services, logging sensitive credentials may pose a risk depending on your organization's threat model.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

      // nodeTopology defines which nodes have access to the storage
      // for which capacity was reported. If not set, the storage is
      // not accessible from any node in the cluster. If empty, the
      // storage is accessible from all nodes. This field is
      // immutable.
      //
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector nodeTopology = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Emitter.kt

            nameSpec,
            accessibleType<Configuration>()
        )
    
    
    private
    inline fun <reified T> accessibleType() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

     * Contains a reverse dependency view, so we can determine which classes in this set are affected by a change to a class inside or outside this set.
     * Contains information about the accessible, inlineable constants in each class, since these require full recompilation of dependents if changed.
     * If analysis failed for any reason, that reason is captured and triggers full rebuilds if this class set is used.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassDependentsAccumulatorTest.groovy

            accumulator.classesToConstants.get('b') == [0, 8] as Set
            accumulator.classesToConstants.get('c') == [3, 4] as Set
        }
    
        def "accumulates accessible and private dependents"() {
            accumulator.addClass("d", hash, "reason",  [], ['x'], IntSets.EMPTY_SET)
            accumulator.addClass("a", hash, null, ["b"], ["c"], IntSets.EMPTY_SET)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. cmd/erasure-common.go

    				return
    			}
    			di, err := disks[i].DiskInfo(context.Background(), DiskInfoOptions{})
    			if err != nil || di.Healing {
    				// - Do not consume disks which are not reachable
    				//   unformatted or simply not accessible for some reason.
    				//
    				// - Do not consume disks which are being healed
    				//
    				// - Future: skip busy disks
    				return
    			}
    
    			mu.Lock()
    			newDisks = append(newDisks, disks[i])
    			mu.Unlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    	"nodeTopology":      "nodeTopology defines which nodes have access to the storage for which capacity was reported. If not set, the storage is not accessible from any node in the cluster. If empty, the storage is accessible from all nodes. This field is immutable.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. src/runtime/write_err_android.go

    	writeBuf [1024]byte
    	writePos int
    )
    
    // Prior to Android-L, logging was done through writes to /dev/log files implemented
    // in kernel ring buffers. In Android-L, those /dev/log files are no longer
    // accessible and logging is done through a centralized user-mode logger, logd.
    //
    // https://android.googlesource.com/platform/system/core/+/refs/tags/android-6.0.1_r78/liblog/logd_write.c
    type loggerType int32
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top