Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for qualified (0.19 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         * when we shorten [qualifier].
         */
        private fun removeRedundantElements(qualifier: KtElement) {
            typesToShorten.removeAll { it.element.qualifier?.isInsideOf(qualifier) == true }
            qualifiersToShorten.removeAll { it.element.receiverExpression.isInsideOf(qualifier) }
        }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCallResolver.kt

            ) return null
            return unaryExpression
        }
    
        /**
         * When resolving selector expression of a [KtDotQualifiedExpression], we instead resolve the containing qualified expression. This way
         * the corresponding FIR element is the `FirFunctionCall` or `FirPropertyAccessExpression`, etc.
         */
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 70.8K bytes
    - Viewed (1)
  3. istioctl/pkg/describe/describe.go

    	GetSelector() *typev1beta1.WorkloadSelector
    }
    
    // findMatchedConfigs should filter out unrelated configs that are not matched given podsLabels.
    // When the config has no selector labels, this method will treat it as qualified namespace level
    // config. So configs passed into this method should only contains workload's namespaces configs
    // and rootNamespaces configs, caller should be responsible for controlling configs passed
    // in.
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/callResolver/Fe10IdeNormalAnalysisSourceModuleResolveCallTestGenerated.java

      }
    
      @Test
      @TestMetadata("javaPropertyGetter_unqualified.kt")
      public void testJavaPropertyGetter_unqualified() {
        runTest("analysis/analysis-api/testData/components/callResolver/resolveCall/javaPropertyGetter_unqualified.kt");
      }
    
      @Test
      @TestMetadata("javaPropertyNestedGetter.kt")
      public void testJavaPropertyNestedGetter() {
    Java
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Apr 16 19:28:19 GMT 2024
    - 53.5K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    				}
    				return objInfo, gerr
    			}
    
    			// Add protection and re-verify the ILM rules for qualification
    			// based on the latest objectInfo and see if the object still
    			// qualifies for deletion.
    			if gerr == nil {
    				evt := evalActionFromLifecycle(ctx, *lc, rcfg, replcfg, goi)
    				var isErr bool
    				switch evt.Action {
    				case lifecycle.NoneAction:
    					isErr = true
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 19 16:44:59 GMT 2024
    - 76.3K bytes
    - Viewed (2)
  6. src/cmd/cgo/gcc.go

    	}
    }
    
    // base strips away qualifiers and typedefs to get the underlying type.
    func base(dt dwarf.Type) dwarf.Type {
    	for {
    		if d, ok := dt.(*dwarf.QualType); ok {
    			dt = d.Type
    			continue
    		}
    		if d, ok := dt.(*dwarf.TypedefType); ok {
    			dt = d.Type
    			continue
    		}
    		break
    	}
    	return dt
    }
    
    // unqual strips away qualifiers from a DWARF type.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top