Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,217 for inform (0.12 sec)

  1. CREDITS

          exercising permissions granted by this License.
    
          "Source" form shall mean the preferred form for making modifications,
          including but not limited to software source code, documentation
          source, and configuration files.
    
          "Object" form shall mean any form resulting from mechanical
          transformation or translation of a Source form, including but
          not limited to compiled object code, generated documentation,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  2. src/runtime/proc.go

    			res = true
    		}
    	}
    	return res
    }
    
    // Tell the goroutine running on processor P to stop.
    // This function is purely best-effort. It can incorrectly fail to inform the
    // goroutine. It can inform the wrong goroutine. Even if it informs the
    // correct goroutine, that goroutine might ignore the request if it is
    // simultaneously executing newstack.
    // No lock needs to be held.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. pkg/kube/krt/informer.go

    	}
    	return a
    }
    
    var _ internalCollection[controllers.Object] = &informer[controllers.Object]{}
    
    func (i *informer[I]) _internalHandler() {}
    
    func (i *informer[I]) Synced() Syncer {
    	return channelSyncer{
    		name:   i.collectionName,
    		synced: i.synced,
    	}
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (i *informer[I]) dump() {
    	i.log.Errorf(">>> BEGIN DUMP")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    - In a scheduler with `Permit` plugins, when a Pod is rejected during `WaitOnPermit`, the scheduler records the plugin.
      The scheduler will use the record to honor cluster events and queueing `hints registered` for the plugin, to inform whether to retry the pod. ([#119785](https://github.com/kubernetes/kubernetes/pull/119785), [@sanposhiho](https://github.com/sanposhiho))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    	} else {
    		hashWriteStat(h, info)
    	}
    	return h.Sum()
    }
    
    func hashWriteStat(h io.Writer, info fs.FileInfo) {
    	fmt.Fprintf(h, "stat %d %x %v %v\n", info.Size(), uint64(info.Mode()), info.ModTime(), info.IsDir())
    }
    
    // testAndInputKey returns the actual cache key for the pair (testID, testInputsID).
    func testAndInputKey(testID, testInputsID cache.ActionID) cache.ActionID {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

     */
    package org.codelibs.fess.app.web.go;
    
    import java.util.HashMap;
    import java.util.Map;
    
    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    
    public class GoForm {
        @Required
        @Size(max = 100)
        public String docId;
    
        @Size(max = 10000)
        @Required
        public String rt;
    
        public String hash;
    
        @Required
        public String queryId;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    		if err != nil {
    			return nil, fmt.Errorf("while starting informer-based ClusterTrustBundle manager: %w", err)
    		}
    		kubeInformers.Start(wait.NeverStop)
    		klog.InfoS("Started ClusterTrustBundle informer")
    	} else {
    		// In static kubelet mode, use a no-op manager.
    		clusterTrustBundleManager = &clustertrustbundle.NoopManager{}
    		klog.InfoS("Not starting ClusterTrustBundle informer because we are in static kubelet mode")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (1)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/build/GradleEnvironment.java

    import java.io.File;
    
    /**
     * Informs about the Gradle environment, for example the Gradle version.
     * <p>
     * See example in {@link BuildEnvironment}
     *
     * @since 1.0-milestone-8
     */
    public interface GradleEnvironment {
    
        /**
         * Informs about the Gradle user home.
         *
         * @since 2.4
         */
        File getGradleUserHome();
    
        /**
         * Informs about the Gradle version.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionReason.java

    @HasInternalProtocol
    public interface ComponentSelectionReason {
    
        /**
         * Informs whether the component was forced. Users can force components via {@link org.gradle.api.artifacts.ResolutionStrategy} or when declaring dependencies (see {@link
         * org.gradle.api.artifacts.dsl.DependencyHandler}).
         */
        boolean isForced();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Aug 28 21:50:20 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/BuildEnvironmentModelCrossVersionSpec.groovy

        def "informs about build environment"() {
            when:
            BuildEnvironment model = withConnection { it.getModel(BuildEnvironment.class) }
    
            then:
            model.gradle.gradleVersion == targetDist.version.version
            model.java.javaHome
            !model.java.jvmArguments.empty
        }
    
        def "informs about java args as in the build script"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top