Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,594 for ridentifier (0.26 sec)

  1. src/go/printer/testdata/parser.go

    	}
    }
    
    // The unresolved object is a sentinel to mark identifiers that have been added
    // to the list of unresolved identifiers. The sentinel is only used for verifying
    // internal consistency.
    var unresolved = new(ast.Object)
    
    func (p *parser) resolve(x ast.Expr) {
    	// nothing to do if x is not an identifier or the blank identifier
    	ident, _ := x.(*ast.Ident)
    	if ident == nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testerrors/testdata/issue42580.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 42580: cmd/cgo: shifting identifier position in ast
    
    package cgotest
    
    // typedef int (*intFunc) ();
    //
    // char* strarg = "";
    //
    // int func_with_char(char* arg, void* dummy)
    // {return 5;}
    //
    // int* get_arr(char* arg, void* dummy)
    // {return NULL;}
    import "C"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics.go

    const (
    	namespace = "apiserver"
    	subsystem = "admission"
    
    	// WebhookRejectionCallingWebhookError identifies a calling webhook error which causes
    	// a webhook admission to reject a request
    	WebhookRejectionCallingWebhookError WebhookRejectionErrorType = "calling_webhook_error"
    	// WebhookRejectionAPIServerInternalError identifies an apiserver internal error which
    	// causes a webhook admission to reject a request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:40 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ModuleComponentArtifactIdentifier.java

    import org.gradle.api.artifacts.component.ComponentArtifactIdentifier;
    import org.gradle.api.artifacts.component.ModuleComponentIdentifier;
    import org.gradle.internal.DisplayName;
    
    /**
     * An immutable identifier for an artifact that belongs to some module version.
     */
    public interface ModuleComponentArtifactIdentifier extends ComponentArtifactIdentifier, DisplayName {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    			w.watchCount[*identifier] += incr
    		}
    	}
    }
    
    func (w *watchTracker) forgetWatch(identifier *watchIdentifier, index *indexValue) ForgetWatchFunc {
    	return func() {
    		w.lock.Lock()
    		defer w.lock.Unlock()
    
    		w.updateIndexLocked(identifier, index, -1)
    		if w.watchCount[*identifier] == 0 {
    			delete(w.watchCount, *identifier)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.groovy

                buildFile << """
                    allprojects {
                        apply plugin: 'java'
                    }
                """
            }
            includedBuilds << buildB
        }
    
        def "includes build identifier in logging output with #display"() {
            dependency "org.test:${dependencyName}:1.0"
    
            buildB.settingsFile << settings << "\n"
            buildB.buildFile << """
                println "configuring \$project.path"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/go/ast/resolve.go

    // NewPackage creates a new [Package] node from a set of [File] nodes. It resolves
    // unresolved identifiers across files and updates each file's Unresolved list
    // accordingly. If a non-nil importer and universe scope are provided, they are
    // used to resolve identifiers not declared in any of the package files. Any
    // remaining unresolved identifiers are reported as undeclared. If the files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildTreeLocalComponentProvider.java

            return foreignIdentifiedComponents.computeIfAbsent(projectIdentifier, this::copyComponentWithForeignId);
        }
    
        /**
         * Copes the component identified by {@code projectIdentifier}, except with its identifier replaced with the foreign counterpart.
         *
         * <p>Eventually, in Gradle 9.0, when {@link BuildIdentifier#isCurrentBuild()} is removed, all this logic can disappear.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolver.java

                    // Handle just empty string, single identifier or '(' params? ')', should handle more by parsing the tokens into an expression
                    if (rightValue.getType() == IncludeType.IDENTIFIER) {
                        expressions.add(new SimpleExpression(leftString + rightValue.getValue(), IncludeType.IDENTIFIER));
                        continue;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.4K bytes
    - Viewed (0)
Back to top