Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 104 for getDirs (0.19 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

                }
            """
    
            when:
            succeeds 'taskWithInputs'
    
            then:
            skipped(':taskWithInputs')
        }
    
        @ToBeImplemented("Private getters should be ignored")
        def "private inputs can be overridden in subclass"() {
            given:
            buildFile << '''
                abstract class MyBaseTask extends DefaultTask {
    
                    @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

            });
            selectorState.update(dependencyState);
            return selectorState;
        }
    
        @Nullable
        public NodeState peek() {
            return queue.isEmpty() ? null : queue.getFirst();
        }
    
        public NodeState pop() {
            NodeState next = queue.removeFirst();
            return next.dequeue();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                final List<String> roles = new ArrayList<>();
    
                for (final Pair<String, String> searchFieldLog : searchLog.getSearchFieldLogList()) {
                    final String name = searchFieldLog.getFirst();
                    if (contentFieldNameSet.contains(name)) {
                        if (sb.length() > 0) {
                            sb.append(TEXT_SEP);
                        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

            private static final int PUBLIC_STATIC_FINAL = Opcodes.ACC_PUBLIC | Opcodes.ACC_STATIC | Opcodes.ACC_FINAL;
            private String className;
            /**
             * We only add getters for `public static final String` constants. This is because in
             * the converted classes only contain these kinds of constants.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

        // with `bias` from the BiasAddOp appended.
        SmallVector<Value, 4> operands(contraction.operand_begin(),
                                       contraction.operand_end());
        operands.push_back(bias_add.getBias());
    
        // The fused contraction has the same attributes as the original
        // contraction, with two additions: the list of ops which have been fused
        // together; epsilon (only with FusedBatchNorm).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

        return callee !is KtReferenceExpression ||
                analyze(callee) {
                    isSimpleVariableAccessCall(callee)
                }
    }
    
    /**
     * The body of setters are always used. The body of getters are only used if they are expression bodies.
     */
    private fun doesPropertyAccessorUseBody(propertyAccessor: KtPropertyAccessor, body: PsiElement): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/flags.h

      bool enable_crash_reproducer;
    };
    
    // Return a pointer to the DumpGraphFlags struct;
    // repeated calls return the same pointer.
    // This should be called only after Flags::Parse() has returned.
    
    // Getters for flags structs defined above.  The first call to any of these
    // parses TF_XLA_FLAGS for all of them.  Those functions which return a pointer
    // always return the same pointer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    	}
    	o.serializations.Store(make(serializationsCache))
    }
    
    // The following functions implement metav1.Object interface:
    // - getters simply delegate for the underlying object
    // - setters check if operations isn't noop and if so,
    //   invalidate the cache and delegate for the underlying object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/topologymanager/bitmask/bitmask_test.go

    		},
    		{
    			name:         "Get bits of mask 11",
    			bits:         []int{0, 1},
    			expectedBits: []int{0, 1},
    		},
    	}
    	for _, tc := range tcases {
    		mask, _ := NewBitMask(tc.bits...)
    		bits := mask.GetBits()
    		if !reflect.DeepEqual(bits, tc.expectedBits) {
    			t.Errorf("Expected value to be %v, got %v", tc.expectedBits, bits)
    		}
    	}
    }
    
    func TestIsNarrowerThan(t *testing.T) {
    	tcases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java

          throw new UnsupportedOperationException();
        }
      }
    
      /*
       * TODO(cpovirk): surely we can find a less ugly solution than a class that accepts 3 parameters,
       * exposes as many getters, does work in the constructor, and has both a superclass and a subclass
       */
      public static class SortedMapSubmapTestMapGenerator<
              K extends @Nullable Object, V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top