Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,947 for chansend (0.69 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/equality.go

    		// non-empty
    		return newObj, nil
    	}
    
    	// This transformation only makes sense if the managed fields has at least one
    	// changed timestamp; and are otherwise equal. Return early if there are no
    	// changed timestamps.
    	allTimesUnchanged := true
    	for i, e := range newManagedFields {
    		if !e.Time.Equal(oldManagedFields[i].Time) {
    			allTimesUnchanged = false
    			break
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 28 14:56:34 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/auth/chain/LdapChain.java

            ComponentUtil.getLdapManager().delete(user);
        }
    
        @Override
        public boolean changePassword(final String username, final String password) {
            final boolean changed = ComponentUtil.getLdapManager().changePassword(username, password);
            return !changed || ComponentUtil.getFessConfig().isLdapAdminSyncPassword();
        }
    
        @Override
        public User load(final User user) {
            ComponentUtil.getLdapManager().apply(user);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/OutputChangeListener.java

    @EventScope(Scope.Build.class)
    @ServiceScope(Scope.Gradle.class)
    public interface OutputChangeListener {
        /**
         * Invoked when some locations on disk have been changed or are about to be changed.
         * This happens for example just before and after the task actions are executed or the outputs are loaded from the cache.
         *
         * @param affectedOutputPaths The files which are affected by the change.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginIncrementalAnalysisIntegrationTest.groovy

            }
    
            then:
            outputContains("Analysis cache invalidated, ${reason}")
    
            where:
            reason                | code
            'PMD version changed' | 'toolVersion="6.5.0"'
            'rulesets changed'    | 'ruleSetFiles = files("customRuleSet.xml")'
        }
    
        def "incremental analysis is available in 6.0.0 or newer"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

          // Iterate until fixed point on the block, as it may contain multiple
          // clusters.
          bool changed = true;
          while (changed) {
            changed = false;
            for (Operation& op : graph_body) {
              if (failed(MergeIsland(is_op_calling_func_for_cluster,
                                     cluster_to_tpu_ops_map, &op, &changed))) {
                graph.emitError()
                    << "Merging island failed: the TPU cluster likely "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2_string.go

    package cmd
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[invalidVersionType-0]
    	_ = x[ObjectType-1]
    	_ = x[DeleteType-2]
    	_ = x[LegacyType-3]
    	_ = x[lastVersionType-4]
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 02 19:29:16 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. operator/pkg/compare/compare_test.go

    `,
    			b: `
    ak: av
    bk:
      b1k: b1v-changed
      b2k: b2v-changed
    `,
    			mask: `
    bk:
      b1k: ignored
      b2k: ignored
    `,
    			want: ``,
    		},
    		{
    			desc: "ignore nested masked",
    			a: `
    ak: av
    bk:
      bbk:
        b1k: b1v
        b2k: b2v
    `,
    			b: `
    ak: av
    bk:
      bbk:
        b1k: b1v-changed
        b2k: b2v-changed
    `,
    			mask: `
    bk:
      bbk:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysis.java

        }
    
        /**
         * Computes the transitive dependents of a set of changed classes. If the classes had any changes to inlineable constants, these need to be provided as the second parameter.
         *
         * If incremental annotation processing encountered issues in the previous compilation, a full recompilation is required.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/fingerprint/impl/AbsolutePathFileCollectionFingerprinterTest.groovy

            file.delete()
            file.createDir()
            virtualFileSystem.invalidateAll()
            changes(fingerprint, fingerprinter.fingerprint(fileCollection), listener)
    
            then:
            1 * listener.changed(file.path)
            0 * _
        }
    
        def generatesEventWhenFileContentChanges() {
            TestFile file = tmpDir.createFile('file')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 20 16:00:23 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/objectivec/ObjectiveCLanguageIncrementalCompileIntegrationTest.groovy

            "replacement header dir after" | '"src/main/headers", "src/replacement-headers"'
        }
    
        @ToBeFixedForConfigurationCache
        def "recompiles only source file that imported changed header file"() {
            given:
            sourceFile << """
                #import "${otherHeaderFile.name}"
    """
            and:
            outputs.snapshot { run "mainExecutable" }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top